From: heraklit256 <37872459+heraklit256@users.noreply.github.com#> Date: Mon, 27 Aug 2018 16:27:03 +0000 (+0200) Subject: also trigger DNSWL score rule in case mails are properly ARC signed X-Git-Tag: 1.8.0~198^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f1ebed1f9c5f8fba0c42a945ad68dfed5374a436;p=rspamd.git also trigger DNSWL score rule in case mails are properly ARC signed --- diff --git a/conf/composites.conf b/conf/composites.conf index 9d204344c..2b4c57072 100644 --- a/conf/composites.conf +++ b/conf/composites.conf @@ -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; }