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 21fb7cb commit ef50d47Copy full SHA for ef50d47
install/dist/lib/centos_base.lib.php
@@ -52,6 +52,11 @@ public function configure_amavis() {
52
wf($conf["amavis"]["config_dir"].'/amavisd.conf', $content);
53
chmod($conf['amavis']['config_dir'].'/amavisd.conf', 0640);
54
55
+ if(!is_file($conf['amavis']['config_dir'].'/60-dkim')) {
56
+ touch($conf['amavis']['config_dir'].'/60-dkim');
57
+ chmod($conf['amavis']['config_dir'].'/60-dkim', 0640);
58
+ }
59
+
60
// for CentOS 7.2 only
61
if($dist['confid'] == 'centos72') {
62
chmod($conf['amavis']['config_dir'].'/amavisd.conf', 0750);
0 commit comments