diff options
author | Peter Müller <peter.mueller@link38.eu> | 2018-05-17 19:38:00 +0200 |
---|---|---|
committer | Peter Müller <peter.mueller@link38.eu> | 2018-05-17 19:38:00 +0200 |
commit | b11a405d7a547f8f34050c733d3db2fc8b5d04ca (patch) | |
tree | be97662036dfbb47ef458341c7403ab14b319646 /conf | |
parent | 291afeea369985518dcf63238471d83121bf64ef (diff) | |
download | rspamd-b11a405d7a547f8f34050c733d3db2fc8b5d04ca.tar.gz rspamd-b11a405d7a547f8f34050c733d3db2fc8b5d04ca.zip |
improve RBL scores descriptions
Diffstat (limited to 'conf')
-rw-r--r-- | conf/scores.d/rbl_group.conf | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/conf/scores.d/rbl_group.conf b/conf/scores.d/rbl_group.conf index 8bee1b4b5..be145e350 100644 --- a/conf/scores.d/rbl_group.conf +++ b/conf/scores.d/rbl_group.conf @@ -22,76 +22,76 @@ symbols = { } "RCVD_IN_DNSWL" { weight = 0.0; - description = "Unrecognised result from dnswl.org"; + description = "Unrecognised result from https://www.dnswl.org"; } "RCVD_IN_DNSWL_NONE" { weight = 0.0; - description = "Sender listed at http://www.dnswl.org, low none"; + description = "Sender listed at https://www.dnswl.org, no trust"; } "RCVD_IN_DNSWL_LOW" { weight = 0.0; - description = "Sender listed at http://www.dnswl.org, low trust"; + description = "Sender listed at https://www.dnswl.org, low trust"; } "RCVD_IN_DNSWL_MED" { weight = 0.0; - description = "Sender listed at http://www.dnswl.org, medium trust"; + description = "Sender listed at https://www.dnswl.org, medium trust"; } "RCVD_IN_DNSWL_HI" { weight = 0.0; - description = "Sender listed at http://www.dnswl.org, high trust"; + description = "Sender listed at https://www.dnswl.org, high trust"; } "RBL_SPAMHAUS" { weight = 0.0; - description = "Unrecognised result from Spamhaus zen"; + description = "Unrecognised result from Spamhaus ZEN"; } "RBL_SPAMHAUS_SBL" { weight = 2.0; - description = "From address is listed in zen sbl"; + description = "From address is listed in ZEN SBL"; } "RBL_SPAMHAUS_CSS" { weight = 2.0; - description = "From address is listed in zen css"; + description = "From address is listed in ZEN CSS"; } "RBL_SPAMHAUS_XBL" { weight = 4.0; - description = "From address is listed in zen xbl"; + description = "From address is listed in ZEN XBL"; } "RBL_SPAMHAUS_XBL_ANY" { weight = 4.0; - description = "From or received address is listed in zen xbl (any list)"; + description = "From or received address is listed in ZEN XBL (any list)"; } "RBL_SPAMHAUS_PBL" { weight = 2.0; - description = "From address is listed in zen pbl (ISP list)"; + description = "From address is listed in ZEN PBL (ISP list)"; } "RBL_SPAMHAUS_DROP" { weight = 7.0; - description = "From address is listed in zen drop bl"; + description = "From address is listed in ZEN DROP bl"; } "RECEIVED_SPAMHAUS_SBL" { weight = 1.0; - description = "Received address is listed in zen sbl"; + description = "Received address is listed in ZEN SBL"; one_shot = true; } "RECEIVED_SPAMHAUS_CSS" { weight = 1.0; - description = "Received address is listed in zen css"; + description = "Received address is listed in ZEN CSS"; one_shot = true; } "RECEIVED_SPAMHAUS_XBL" { weight = 3.0; - description = "Received address is listed in zen xbl"; + description = "Received address is listed in ZEN XBL"; one_shot = true; } "RECEIVED_SPAMHAUS_PBL" { weight = 0.0; - description = "Received address is listed in pbl (ISP list)"; + description = "Received address is listed in ZEN PBL (ISP list)"; one_shot = true; } "RECEIVED_SPAMHAUS_DROP" { weight = 6.0; - description = "Received address is listed in zen drop bl"; + description = "Received address is listed in ZEN DROP bl"; one_shot = true; } |