diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-08-29 18:20:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 18:20:15 +0100 |
commit | b65379dd67aa524dd19e82ddf3528850675a74ce (patch) | |
tree | 20e62f44ea9fc7c976e8104a50ec6811af9a7379 /conf | |
parent | 7fcc91d400a3cce02787a059357e0398a335bc26 (diff) | |
parent | f1ebed1f9c5f8fba0c42a945ad68dfed5374a436 (diff) | |
download | rspamd-b65379dd67aa524dd19e82ddf3528850675a74ce.tar.gz rspamd-b65379dd67aa524dd19e82ddf3528850675a74ce.zip |
Merge pull request #2446 from heraklit256/extended-dnswl-scores
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; } |