diff options
author | Andrew Lewis <nerf@judo.za.org> | 2016-08-29 14:41:12 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2016-08-29 14:41:12 +0200 |
commit | 07f4c49ea5720265aebcd6e4a6f0635d382f5938 (patch) | |
tree | c031a6ad602ad322e20dfe36b5c734b5a5dac2d1 /conf | |
parent | 86ff659737387b39018be311ae5ea6d2c98e768d (diff) | |
download | rspamd-07f4c49ea5720265aebcd6e4a6f0635d382f5938.tar.gz rspamd-07f4c49ea5720265aebcd6e4a6f0635d382f5938.zip |
[Feature] Add R_DKIM_NA / R_SPF_NA / AUTH_NA symbols
Diffstat (limited to 'conf')
-rw-r--r-- | conf/composites.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/composites.conf b/conf/composites.conf index d6d845fe9..d2e71bedf 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -41,6 +41,10 @@ composite "FORGED_MUA_MAILLIST" { composite "RBL_SPAMHAUS_XBL_ANY" { expression = "(-RBL_SPAMHAUS_XBL | -RBL_SPAMHAUS_XBL1 | -RBL_SPAMHAUS_XBL2 | -RBL_SPAMHAUS_XBL3) & RECEIVED_SPAMHAUS_XBL"; } +composite "AUTH_NA" { + expression = "R_DKIM_NA & R_SPF_NA & DMARC_NA"; + score = 1.0; +} .include(try=true; priority=1; duplicate=merge) "$LOCAL_CONFDIR/local.d/composites.conf" .include(try=true; priority=10) "$LOCAL_CONFDIR/override.d/composites.conf" |