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 a019427 commit 7002a56Copy full SHA for 7002a56
server/plugins-available/mail_plugin_dkim.inc.php
@@ -143,7 +143,12 @@ function check_system($data) {
143
mkdir($mail_config['dkim_path'], 0755, true);
144
$app->log('No user amavis or vscan found - using root for '.$mail_config['dkim_path'], LOGLEVEL_WARNING);
145
}
146
- }
+ } else {
147
+ if (!$app->system->checkpath($mail_config['dkim_path'])) {
148
+ $app->log('Unable to write DKIM settings - invalid DKIM-Path (symlink?)', LOGLEVEL_ERROR);
149
+ $check=false;
150
+ }
151
152
153
if (!is_writeable($mail_config['dkim_path'])) {
154
$app->log('DKIM Path '.$mail_config['dkim_path'].' not writeable.', LOGLEVEL_ERROR);
0 commit comments