diff options
author | Jean-Louis Dupond <jean-louis@dupond.be> | 2021-11-29 16:04:39 +0100 |
---|---|---|
committer | Jean-Louis Dupond <jean-louis@dupond.be> | 2021-11-29 16:04:39 +0100 |
commit | ed22f77cc216a3b8596b7bb15a55385bbe8740d3 (patch) | |
tree | 79ad6b2ecf5f4bb42274547fc4f96a8001129e43 /conf/scores.d | |
parent | d5131fcf2f9ceedbfdc8a5e28f663c15a1d8ffa7 (diff) | |
download | rspamd-ed22f77cc216a3b8596b7bb15a55385bbe8740d3.tar.gz rspamd-ed22f77cc216a3b8596b7bb15a55385bbe8740d3.zip |
Uncomment but disable SpamHaus URIBL
Fix the Spamhaus URIBL and uncomment but disable it.
This way it can be easily enabled in local.d without the need to copy
the whole block.
Symbols are also ignored as this will generate a warning otherwise.
Diffstat (limited to 'conf/scores.d')
-rw-r--r-- | conf/scores.d/surbl_group.conf | 78 |
1 files changed, 42 insertions, 36 deletions
diff --git a/conf/scores.d/surbl_group.conf b/conf/scores.d/surbl_group.conf index e19e48249..34064a174 100644 --- a/conf/scores.d/surbl_group.conf +++ b/conf/scores.d/surbl_group.conf @@ -212,42 +212,48 @@ symbols = { one_shot = true; groups = ["uribl"]; } - #"SPAMHAUS_ZEN_URIBL" { - # weight = 0.0; - # description = "Spamhaus ZEN URIBL: Filtered result"; - # one_shot = true; - # groups = ["spamhaus"]; - #} - #"URIBL_SBL" { - # weight = 6.5; - # description = "A domain in the message body resolves to an IP listed in Spamhaus SBL"; - # one_shot = true; - # groups = ["v"]; - #} - #"URIBL_SBL_CSS" { - # weight = 6.5; - # description = "A domain in the message body resolves to an IP listed in Spamhaus SBL CSS"; - # one_shot = true; - # groups = ["spamhaus"]; - #} - #"URIBL_XBL" { - # weight = 1.5; - # description = "A domain in the message body resolves to an IP listed in Spamhaus XBL"; - # one_shot = true; - # groups = ["spamhaus"]; - #} - #"URIBL_PBL" { - # weight = 0.01; - # description = "A domain in the message body resolves to an IP listed in Spamhaus PBL"; - # one_shot = true; - # groups = ["spamhaus"]; - #} - #"URIBL_DROP" { - # weight = 5.0; - # description = "A domain in the message body resolves to an IP listed in Spamhaus DROP"; - # one_shot = true; - # groups = ["spamhaus"]; - #} + "SPAMHAUS_ZEN_URIBL" { + ignore = true; + weight = 0.0; + description = "Spamhaus ZEN URIBL: Filtered result"; + one_shot = true; + groups = ["spamhaus"]; + } + "URIBL_SBL" { + ignore = true; + weight = 6.5; + description = "A domain in the message body resolves to an IP listed in Spamhaus SBL"; + one_shot = true; + groups = ["spamhaus"]; + } + "URIBL_SBL_CSS" { + ignore = true; + weight = 6.5; + description = "A domain in the message body resolves to an IP listed in Spamhaus SBL CSS"; + one_shot = true; + groups = ["spamhaus"]; + } + "URIBL_XBL" { + ignore = true; + weight = 1.5; + description = "A domain in the message body resolves to an IP listed in Spamhaus XBL"; + one_shot = true; + groups = ["spamhaus"]; + } + "URIBL_PBL" { + ignore = true; + weight = 0.01; + description = "A domain in the message body resolves to an IP listed in Spamhaus PBL"; + one_shot = true; + groups = ["spamhaus"]; + } + "URIBL_DROP" { + ignore = true; + weight = 5.0; + description = "A domain in the message body resolves to an IP listed in Spamhaus DROP"; + one_shot = true; + groups = ["spamhaus"]; + } #"RBL_SARBL_BAD" { # weight = 2.5; # description = "A domain in the message body is blacklisted in SARBL"; |