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 82ca275 commit 3c5c2dcCopy full SHA for 3c5c2dc
install/lib/installer_base.lib.php
@@ -815,6 +815,14 @@ public function install_ispconfig()
815
816
//set the fast cgi starter script to executable
817
exec('chmod 755 '.$install_dir.'/interface/bin/php-fcgi');
818
+
819
+ //* Make the logs readable for the ispconfig user
820
+ if(@is_file('/var/log/mail.log')) exec('chmod +r /var/log/mail.log');
821
+ if(@is_file('/var/log/mail.warn')) exec('chmod +r /var/log/mail.warn');
822
+ if(@is_file('/var/log/mail.err')) exec('chmod +r /var/log/mail.err');
823
+ if(@is_file('/var/log/messages')) exec('chmod +r /var/log/messages');
824
825
826
}
827
828
public function configure_dbserver()
0 commit comments