NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
PHP 49% JavaScript 35% HTML 9% CSS 4% Shell 2% Python 1% Lua 0% Perl 0% Ruby 0% SCSS 0%
Create file Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git

Commit

[Rspamd] Fix ARC defaults, thanks to klausenbusk

a231ecae
andryyy <[email protected]> 7 years ago
data/conf/rspamd/local.d/arc.conf | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

Diff

diff --git a/data/conf/rspamd/local.d/arc.conf b/data/conf/rspamd/local.d/arc.conf
index 277e0cc0..2552802b 100644
--- a/data/conf/rspamd/local.d/arc.conf
+++ b/data/conf/rspamd/local.d/arc.conf
@@ -1,27 +1,27 @@
 # If false, messages with empty envelope from are not signed
-allow_envfrom_empty = false;
+allow_envfrom_empty = true;
 # If true, envelope/header domain mismatch is ignored
-allow_hdrfrom_mismatch = false;
+allow_hdrfrom_mismatch = true;
 # If true, multiple from headers are allowed (but only first is used)
-allow_hdrfrom_multiple = true;
+allow_hdrfrom_multiple = false;
 # If true, username does not need to contain matching domain
 allow_username_mismatch = false;
 # If false, messages from authenticated users are not selected for signing
-auth_only = true;
+auth_only = false;
 # Default path to key, can include '$domain' and '$selector' variables
 path = "/data/dkim/keys/$domain.dkim";
 # Default selector to use
 selector = "dkim";
 # If false, messages from local networks are not selected for signing
-sign_local = true;
+sign_local = false;
 # Symbol to add when message is signed
 symbol = "ARC_SIGNED";
 # Whether to fallback to global config
 try_fallback = true;
 # Domain to use for DKIM signing: can be "header" or "envelope"
-use_domain = "envelope";
+use_domain = "recipient";
 # Whether to normalise domains to eSLD
-use_esld = false;
+use_esld = true;
 # Whether to get keys from Redis
 use_redis = true;
 # Hash for DKIM keys in Redis