diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-29 17:41:17 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-29 17:41:17 +0000 |
commit | 993c4a75520121da554575b9abbbd140825a5855 (patch) | |
tree | 85e91529625754a632760f6f57ae28f2032e6053 /conf/scores.d | |
parent | 82834075cb20e59f4467160396a9709bd6081bd6 (diff) | |
download | rspamd-993c4a75520121da554575b9abbbd140825a5855.tar.gz rspamd-993c4a75520121da554575b9abbbd140825a5855.zip |
[Conf] Add DWL support in the default configuration
Diffstat (limited to 'conf/scores.d')
-rw-r--r-- | conf/scores.d/rbl_group.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/conf/scores.d/rbl_group.conf b/conf/scores.d/rbl_group.conf index bc9bb6b0e..f40d94e7f 100644 --- a/conf/scores.d/rbl_group.conf +++ b/conf/scores.d/rbl_group.conf @@ -16,6 +16,7 @@ # See https://rspamd.com/doc/tutorials/writing_rules.html for details symbols = { + "DNSWL_BLOCKED" { weight = 0.0; description = "Resolver blocked due to excessive queries"; @@ -41,6 +42,31 @@ symbols = { description = "Sender listed at https://www.dnswl.org, high trust"; } + "DNSWL_DWL_BLOCKED" { + weight = 0.0; + description = "Resolver blocked due to excessive queries (dwl)"; + } + "DWL_DNSWL" { + weight = 0.0; + description = "Unrecognised result from https://www.dnswl.org (dwl)"; + } + "DWL_DNSWL_NONE" { + weight = 0.0; + description = "Message has a valid dkim signature originated from domain listed at https://www.dnswl.org, no trust"; + } + "DWL_DNSWL_LOW" { + weight = -1; + description = "Message has a valid dkim signature originated from domain listed at https://www.dnswl.org, low trust"; + } + "DWL_DNSWL_MED" { + weight = -2; + description = "Message has a valid dkim signature originated from domain listed at https://www.dnswl.org, medium trust"; + } + "DWL_DNSWL_HI" { + weight = -3.5; + description = "Message has a valid dkim signature originated from domain listed at https://www.dnswl.org, high trust"; + } + "RBL_SPAMHAUS" { weight = 0.0; description = "Unrecognised result from Spamhaus ZEN"; |