diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index 622674267c21b6f214f3bb3f313031c137788ec3..4165551108a639b5ebc26a765f05bea97c7c45fa 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -1861,7 +1861,7 @@ class installer_base { # local.d templates with template tags # note: ensure these template files are in server/conf/ and symlinked in install/tpl/ $local_d = array( - 'dkim_signing.conf', + 'dkim_signing.conf', # dkim_signing.conf no longer uses template tags, could move below 'options.inc', 'redis.conf', 'classifier-bayes.conf', @@ -1897,6 +1897,7 @@ class installer_base { 'neural_group.conf', 'users.conf', 'groups.conf', + 'arc.conf', ); foreach ($local_d as $f) { if(file_exists($conf['ispconfig_install_dir']."/server/conf-custom/install/rspamd_${f}.master")) { diff --git a/install/tpl/rspamd_arc.conf.master b/install/tpl/rspamd_arc.conf.master new file mode 100644 index 0000000000000000000000000000000000000000..781f83ccb26ae13406725022e3f7adb4d568e851 --- /dev/null +++ b/install/tpl/rspamd_arc.conf.master @@ -0,0 +1,8 @@ +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";