diff options
author | Andrew Lewis <nerf@judo.za.org> | 2016-08-22 11:38:33 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2016-08-22 11:38:33 +0200 |
commit | 9616bee5ff2d76206e55b81852d0e2ae7aa1e3db (patch) | |
tree | 23ecfe8b944960a5008fd495f7ee6b7fbf3ca9fb /conf/composites.conf | |
parent | e158dc398c4b02b3fe5422a91634f867048076b9 (diff) | |
download | rspamd-9616bee5ff2d76206e55b81852d0e2ae7aa1e3db.tar.gz rspamd-9616bee5ff2d76206e55b81852d0e2ae7aa1e3db.zip |
[Minor] Composite: Don't penalise for SPF/DKIM failure when DMARC passed
Diffstat (limited to 'conf/composites.conf')
-rw-r--r-- | conf/composites.conf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/composites.conf b/conf/composites.conf index 5ed69df39..d6d845fe9 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -26,6 +26,9 @@ composite "FORGED_SENDER_FORWARDING" { composite "SPF_FAIL_FORWARDING" { expression = "g:forwarding & (R_SPF_SOFTFAIL | R_SPF_FAIL)"; } +composite "DMARC_POLICY_ALLOW_WITH_FAILURES" { + expression = "DMARC_POLICY_ALLOW & (R_SPF_SOFTFAIL | R_SPF_FAIL | R_DKIM_REJECT)"; +} composite "FORGED_RECIPIENTS_FORWARDING" { expression = "FORGED_RECIPIENTS & g:forwarding"; } |