From: heraklit256 <37872459+heraklit256@users.noreply.github.com#> Date: Thu, 4 Oct 2018 15:49:26 +0000 (+0200) Subject: lower weight for RCVD_DKIM_ARC_DNSWL_MED and RCVD_DKIM_ARC_DNSWL_HIGH X-Git-Tag: 1.8.1~71^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a55afb11014063989f419d3c734f11d6ef2244e;p=thirdparty%2Frspamd.git 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. --- diff --git a/conf/composites.conf b/conf/composites.conf index 37ae2ed366..60a3ef69ad 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"; }