Skip to content
Snippets Groups Projects
Commit 75c5ed1b authored by Jesse Norell's avatar Jesse Norell
Browse files

rspamd: enable arc signing incoming mail

parent a429409c
No related branches found
No related tags found
1 merge request!1482Resolve "rspamd: enable arc signing"
Pipeline #8659 passed
...@@ -1861,7 +1861,7 @@ class installer_base { ...@@ -1861,7 +1861,7 @@ class installer_base {
# local.d templates with template tags # local.d templates with template tags
# note: ensure these template files are in server/conf/ and symlinked in install/tpl/ # note: ensure these template files are in server/conf/ and symlinked in install/tpl/
$local_d = array( $local_d = array(
'dkim_signing.conf', 'dkim_signing.conf', # dkim_signing.conf no longer uses template tags, could move below
'options.inc', 'options.inc',
'redis.conf', 'redis.conf',
'classifier-bayes.conf', 'classifier-bayes.conf',
...@@ -1897,6 +1897,7 @@ class installer_base { ...@@ -1897,6 +1897,7 @@ class installer_base {
'neural_group.conf', 'neural_group.conf',
'users.conf', 'users.conf',
'groups.conf', 'groups.conf',
'arc.conf',
); );
foreach ($local_d as $f) { foreach ($local_d as $f) {
if(file_exists($conf['ispconfig_install_dir']."/server/conf-custom/install/rspamd_${f}.master")) { if(file_exists($conf['ispconfig_install_dir']."/server/conf-custom/install/rspamd_${f}.master")) {
......
sign_authenticated = false;
sign_inbound = true;
sign_local = false;
use_domain = "recipient";
try_fallback = false;
use_esld = false;
path_map = "/etc/rspamd/local.d/dkim_domains.map";
selector_map = "/etc/rspamd/local.d/dkim_selectors.map";
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment