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 32048fa commit b801952Copy full SHA for b801952
install/lib/installer_base.lib.php
@@ -1800,14 +1800,17 @@ public function configure_rspamd() {
1800
1801
if(!is_dir('/etc/rspamd/local.d/')){
1802
mkdir('/etc/rspamd/local.d/', 0755, true);
1803
+ chmod('/etc/rspamd/local.d/', 0755);
1804
}
1805
1806
if(!is_dir('/etc/rspamd/local.d/maps.d/')){
1807
mkdir('/etc/rspamd/local.d/maps.d/', 0755, true);
1808
+ chmod('/etc/rspamd/local.d/maps.d/', 0755);
1809
1810
1811
if(!is_dir('/etc/rspamd/override.d/')){
1812
mkdir('/etc/rspamd/override.d/', 0755, true);
1813
+ chmod('/etc/rspamd/override.d/', 0755);
1814
1815
1816
if ( substr($mail_config['dkim_path'], strlen($mail_config['dkim_path'])-1) == '/' ) {
0 commit comments