diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-10-18 13:59:41 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-10-18 13:59:47 +0200 |
commit | 65c50d958dd281d72423e1a4cf1ad195047109f7 (patch) | |
tree | 261ca943087d2157fcf2ee0625e45ea6cbe012c6 /roles | |
parent | 6b7ad809bbefc32216bac22547241ed402a570c8 (diff) |
Set dmarc_protection_mode=all from dmarc_any.
Cf. https://www.sympa.community/gpldoc/man/sympa_config.5.html#dmarc_protection
and https://sympa-community.github.io/manual/customize/dmarc-protection.html .
Diffstat (limited to 'roles')
-rw-r--r-- | roles/lists/files/etc/sympa/sympa/sympa.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/lists/files/etc/sympa/sympa/sympa.conf b/roles/lists/files/etc/sympa/sympa/sympa.conf index 683074e..a864a14 100644 --- a/roles/lists/files/etc/sympa/sympa/sympa.conf +++ b/roles/lists/files/etc/sympa/sympa/sympa.conf @@ -268,41 +268,41 @@ default_sql_fetch_timeout 300 #cafile /usr/local/apache/conf/ssl.crt/ca-bundle.crt ## Directory containing user certificates ssl_cert_dir /var/lib/sympa/list_data/X509-user-certs ## Password used to crypt lists private keys #key_passwd your_password ###\\\\ DKIM ////### dkim_feature off ## Insert a DKIM signature to message from the robot, from the list or both dkim_add_signature_to robot,list ## Type of message that is added a DKIM signature before distribution to subscribers. Possible values are "none", "any" or a list of the following keywords: "md5_authenticated_messages", "smime_authenticated_messages", "dkim_authenticated_messages", "editor_validated_messages". dkim_signature_apply_on md5_authenticated_messages,smime_authenticated_messages,dkim_authenticated_messages,editor_validated_messages ## DMARC protection ## https://sympa-community.github.io/manual/customize/dmarc-protection.html -dmarc_protection_mode dmarc_any +dmarc_protection_mode all ###\\\\ Antivirus plug-in ////### ## Path to the antivirus scanner engine ## Supported antivirus: McAfee/uvscan, Fsecure/fsav, Sophos, AVP and Trend Micro/VirusWall #antivirus_path /usr/local/uvscan/uvscan ## Antivirus plugin command argument #antivirus_args --secure --summary --dat /usr/local/uvscan ###\\\\ Tag based spam filtering ////### ## If a spam filter (like spamassassin or j-chkmail) add a smtp headers to tag spams, name of this header (example X-Spam-Status) antispam_tag_header_name X-Spam-Status ## Regexp applied on this header to verify message is a spam (example \s*Yes) antispam_tag_header_spam_regexp ^\s*Yes ## Regexp applied on this header to verify message is NOT a spam (example \s*No) antispam_tag_header_ham_regexp ^\s*No |