We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cc1b8e commit 6b0723dCopy full SHA for 6b0723d
install/lib/installer_base.lib.php
@@ -739,11 +739,12 @@ public function process_postfix_config($configfile) {
739
$config_dir = $conf['postfix']['config_dir'].'/';
740
$postfix_group = $conf['postfix']['group'];
741
$full_file_name = $config_dir.$configfile;
742
+
743
//* Backup exiting file
744
if(is_file($full_file_name)) {
745
copy($full_file_name, $config_dir.$configfile.'~');
746
+ chmod($config_dir.$configfile.'~',0600);
747
}
- chmod($config_dir.$configfile.'~',0600);
748
749
//* Replace variables in config file template
750
$content = rfsel($conf['ispconfig_install_dir'].'/server/conf-custom/install/'.$configfile.'.master', 'tpl/'.$configfile.'.master');
0 commit comments