diff options
author | Jean-Louis Dupond <jean-louis@dupond.be> | 2021-12-16 16:18:42 +0100 |
---|---|---|
committer | Jean-Louis Dupond <jean-louis@dupond.be> | 2021-12-17 08:43:53 +0100 |
commit | 52fd01b1da8d1990e38fefa2b19a2d26bb1b6ccd (patch) | |
tree | 9fdebf5ddb8f81f6899bb665cdb6f7348c2a5716 | |
parent | c20ae890aa62c5323c7dad718ef356e09b00e2a5 (diff) | |
download | rspamd-52fd01b1da8d1990e38fefa2b19a2d26bb1b6ccd.tar.gz rspamd-52fd01b1da8d1990e38fefa2b19a2d26bb1b6ccd.zip |
Assign weights to Mailspike Whitelists
Assign a weight to the MAILSPIKE whitelist RBL symbols.
Use the same but negative weight as its blacklist counterparts.
Also fix some indents in the file
-rw-r--r-- | conf/scores.d/rbl_group.conf | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/conf/scores.d/rbl_group.conf b/conf/scores.d/rbl_group.conf index 690d0ee17..6b3f04de1 100644 --- a/conf/scores.d/rbl_group.conf +++ b/conf/scores.d/rbl_group.conf @@ -117,14 +117,14 @@ symbols = { groups = ["spamhaus"]; } "RBL_SPAMHAUS_BLOCKED_OPENRESOLVER" { - weight = 0.0; - description = "You are querying Spamhaus from an open resolver, please see https://www.spamhaus.org/returnc/pub/"; - groups = ["spamhaus"]; + weight = 0.0; + description = "You are querying Spamhaus from an open resolver, please see https://www.spamhaus.org/returnc/pub/"; + groups = ["spamhaus"]; } "RBL_SPAMHAUS_BLOCKED" { - weight = 0.0; - description = "You are exceeding the query limit, please see https://www.spamhaus.org/returnc/vol/"; - groups = ["spamhaus"]; + weight = 0.0; + description = "You are exceeding the query limit, please see https://www.spamhaus.org/returnc/vol/"; + groups = ["spamhaus"]; } "RECEIVED_SPAMHAUS_SBL" { weight = 1.0; @@ -157,14 +157,14 @@ symbols = { one_shot = true; } "RECEIVED_SPAMHAUS_BLOCKED_OPENRESOLVER" { - weight = 0.0; - description = "You are querying Spamhaus from an open resolver, please see https://www.spamhaus.org/returnc/pub/"; - groups = ["spamhaus"]; + weight = 0.0; + description = "You are querying Spamhaus from an open resolver, please see https://www.spamhaus.org/returnc/pub/"; + groups = ["spamhaus"]; } "RECEIVED_SPAMHAUS_BLOCKED" { - weight = 0.0; - description = "You are exceeding the query limit, please see https://www.spamhaus.org/returnc/vol/"; - groups = ["spamhaus"]; + weight = 0.0; + description = "You are exceeding the query limit, please see https://www.spamhaus.org/returnc/vol/"; + groups = ["spamhaus"]; } "RBL_SENDERSCORE" { @@ -202,17 +202,17 @@ symbols = { groups = ["mailspike"]; } "RWL_MAILSPIKE_GOOD" { - weight = 0.0; + weight = -0.1; description = "From address is listed in RWL - good reputation"; groups = ["mailspike"]; } "RWL_MAILSPIKE_VERYGOOD" { - weight = 0.0; + weight = -0.2; description = "From address is listed in RWL - very good reputation"; groups = ["mailspike"]; } "RWL_MAILSPIKE_EXCELLENT" { - weight = 0.0; + weight = -0.4; description = "From address is listed in RWL - excellent reputation"; groups = ["mailspike"]; } |