diff options
author | Andrew Lewis <nerf@judo.za.org> | 2016-09-08 16:41:27 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2016-09-08 16:41:27 +0200 |
commit | 032de97d723dd030734b9abdb49c829be080a0b7 (patch) | |
tree | 2ca3d88b8022c78804f0bf146344df290accbb5c /conf | |
parent | bc4cf433bbd60416a3d9e4812b7a48009d680418 (diff) | |
download | rspamd-032de97d723dd030734b9abdb49c829be080a0b7.tar.gz rspamd-032de97d723dd030734b9abdb49c829be080a0b7.zip |
[Minor] Fine-tune composites
Diffstat (limited to 'conf')
-rw-r--r-- | conf/composites.conf | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/composites.conf b/conf/composites.conf index d2e71bedf..b64201494 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -28,6 +28,7 @@ composite "SPF_FAIL_FORWARDING" { } composite "DMARC_POLICY_ALLOW_WITH_FAILURES" { expression = "DMARC_POLICY_ALLOW & (R_SPF_SOFTFAIL | R_SPF_FAIL | R_DKIM_REJECT)"; + policy = "remove_weight"; } composite "FORGED_RECIPIENTS_FORWARDING" { expression = "FORGED_RECIPIENTS & g:forwarding"; @@ -39,11 +40,12 @@ composite "FORGED_MUA_MAILLIST" { expression = "g:mua and -MAILLIST"; } composite "RBL_SPAMHAUS_XBL_ANY" { - expression = "(-RBL_SPAMHAUS_XBL | -RBL_SPAMHAUS_XBL1 | -RBL_SPAMHAUS_XBL2 | -RBL_SPAMHAUS_XBL3) & RECEIVED_SPAMHAUS_XBL"; + expression = "RBL_SPAMHAUS_XBL & RECEIVED_SPAMHAUS_XBL"; } composite "AUTH_NA" { expression = "R_DKIM_NA & R_SPF_NA & DMARC_NA"; score = 1.0; + policy = "remove_weight"; } .include(try=true; priority=1; duplicate=merge) "$LOCAL_CONFDIR/local.d/composites.conf" |