diff options
author | heraklit256 <37872459+heraklit256@users.noreply.github.com#> | 2018-08-27 18:27:03 +0200 |
---|---|---|
committer | heraklit256 <37872459+heraklit256@users.noreply.github.com#> | 2018-08-27 18:27:03 +0200 |
commit | f1ebed1f9c5f8fba0c42a945ad68dfed5374a436 (patch) | |
tree | b90ea2e575a35e478cedc8f5beb251fc20714d33 /conf | |
parent | c98a0705466bd4303f4648a67e8d96d940723995 (diff) | |
download | rspamd-f1ebed1f9c5f8fba0c42a945ad68dfed5374a436.tar.gz rspamd-f1ebed1f9c5f8fba0c42a945ad68dfed5374a436.zip |
also trigger DNSWL score rule in case mails are properly ARC signed
Diffstat (limited to 'conf')
-rw-r--r-- | conf/composites.conf | 12 |
1 files changed, 6 insertions, 6 deletions
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; } |