]> source.dussan.org Git - rspamd.git/commitdiff
also trigger DNSWL score rule in case mails are properly ARC signed 2446/head
authorheraklit256 <37872459+heraklit256@users.noreply.github.com#>
Mon, 27 Aug 2018 16:27:03 +0000 (18:27 +0200)
committerheraklit256 <37872459+heraklit256@users.noreply.github.com#>
Mon, 27 Aug 2018 16:27:03 +0000 (18:27 +0200)
conf/composites.conf

index 9d204344ce298031091d75d4ccf3cd57e3eb9e6a..2b4c57072e70a7da2dd3cb83a6daaa1e7a6beb77 100644 (file)
@@ -86,14 +86,14 @@ composites {
         description = "Relayed through ZEN PBL IP without sufficient authentication (possible indicating an open relay)";
         score = 2.0;
     }
-    RCVD_DKIM_DNSWL_MED {
-        expression = "R_DKIM_ALLOW & RCVD_IN_DNSWL_MED";
-        description = "Sufficiently DKIM signed and received from IP with medium trust at DNSWL";
+    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;
     }
-    RCVD_DKIM_DNSWL_HI {
-        expression = "R_DKIM_ALLOW & RCVD_IN_DNSWL_HI";
-        description = "Sufficiently DKIM signed and received from IP with high trust at DNSWL";
+    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;
     }