]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
lower weight for RCVD_DKIM_ARC_DNSWL_MED and RCVD_DKIM_ARC_DNSWL_HIGH
authorheraklit256 <37872459+heraklit256@users.noreply.github.com#>
Thu, 4 Oct 2018 15:49:26 +0000 (17:49 +0200)
committerheraklit256 <37872459+heraklit256@users.noreply.github.com#>
Thu, 4 Oct 2018 15:49:26 +0000 (17:49 +0200)
These were too high as other symbols - such as ARC_ALLOW - already
introduce some negative scores.

Thanks to @moisseev for reporting this.

conf/composites.conf

index 37ae2ed36669ecfc42e7cdc044b51c272e998c64..60a3ef69ad7aa8f8753b91963d9724aa5ba24914 100644 (file)
@@ -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";
     }