diff options
author | heraklit256 <37872459+heraklit256@users.noreply.github.com#> | 2018-10-04 17:49:26 +0200 |
---|---|---|
committer | heraklit256 <37872459+heraklit256@users.noreply.github.com#> | 2018-10-04 17:49:26 +0200 |
commit | 1a55afb11014063989f419d3c734f11d6ef2244e (patch) | |
tree | b77c1f7b592e135a82e1aedfd7d23409403a0b71 /conf | |
parent | 6e44ac9fb40e426d9c9bcb140e9244b670553cb0 (diff) | |
download | rspamd-1a55afb11014063989f419d3c734f11d6ef2244e.tar.gz rspamd-1a55afb11014063989f419d3c734f11d6ef2244e.zip |
lower weight for RCVD_DKIM_ARC_DNSWL_MED and RCVD_DKIM_ARC_DNSWL_HIGH
These were too high as other symbols - such as ARC_ALLOW - already
introduce some negative scores.
Thanks to @moisseev for reporting this.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/composites.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/composites.conf b/conf/composites.conf index 37ae2ed36..60a3ef69a 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -90,13 +90,13 @@ composites { 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 = -2.0; policy = "leave"; } |