diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-08 16:22:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-08 16:22:43 +0100 |
commit | 7b1dd5c1a0e3fdcfba31453731fb46361d637bf6 (patch) | |
tree | 85a49c7575f9479dce50f9e0567b02007ca80ef3 /conf/composites.conf | |
parent | 0d25b3158193565a70fecb71ef85342d7cb5b669 (diff) | |
parent | b6092b1f92a27cc070b9beb9be90ea20381dba44 (diff) | |
download | rspamd-7b1dd5c1a0e3fdcfba31453731fb46361d637bf6.tar.gz rspamd-7b1dd5c1a0e3fdcfba31453731fb46361d637bf6.zip |
Merge pull request #2543 from heraklit256/extended-dnswl-scores
leaving original symbols if DNSWL composite rules are triggered
Diffstat (limited to 'conf/composites.conf')
-rw-r--r-- | conf/composites.conf | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/conf/composites.conf b/conf/composites.conf index 7197adc8f..0de2ee2a0 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -88,16 +88,19 @@ composites { expression = "RECEIVED_PBL & -RCVD_VIA_SMTP_AUTH"; description = "Relayed through ZEN PBL IP without sufficient authentication (possible indicating an open relay)"; score = 2.0; + policy = "leave"; } RCVD_DKIM_ARC_DNSWL_MED { expression = "(R_DKIM_ALLOW | ARC_ALLOW) & RCVD_IN_DNSWL_MED"; description = "Sufficiently DKIM/ARC signed and received from IP with medium trust at DNSWL"; - score = -1.5; + score = -0.5; + policy = "leave"; } RCVD_DKIM_ARC_DNSWL_HI { expression = "(R_DKIM_ALLOW | ARC_ALLOW) & RCVD_IN_DNSWL_HI"; description = "Sufficiently DKIM/ARC signed and received from IP with high trust at DNSWL"; - score = -3.5; + score = -1.0; + policy = "leave"; } AUTOGEN_PHP_SPAMMY { expression = "(HAS_X_POS | HAS_PHPMAILER_SIG | HAS_X_PHP_SCRIPT) & (SUBJECT_ENDS_QUESTION | SUBJECT_ENDS_EXCLAIM | MANY_INVISIBLE_PARTS)"; |