diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-07-13 18:18:32 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-07-13 18:18:32 +0100 |
commit | f37c712c6e407a78b13f0dc53772894c9f32bf29 (patch) | |
tree | 05e0037846a0ae0ae895de24b44a71712837dd4b /conf | |
parent | a80a5d03f25641a333d85dfe3814edb01b310be5 (diff) | |
download | rspamd-f37c712c6e407a78b13f0dc53772894c9f32bf29.tar.gz rspamd-f37c712c6e407a78b13f0dc53772894c9f32bf29.zip |
[Conf] Add RBL_VIRUSFREE RBL
Diffstat (limited to 'conf')
-rw-r--r-- | conf/modules.d/rbl.conf | 10 | ||||
-rw-r--r-- | conf/scores.d/rbl_group.conf | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf index 8a5b2dab8..41d5ac802 100644 --- a/conf/modules.d/rbl.conf +++ b/conf/modules.d/rbl.conf @@ -115,6 +115,16 @@ rbl { DNSWL_BLOCKED = "127.0.0.255"; } } + + # Provided by https://virusfree.cz + virusfree { + symbol = "RBL_VIRUSFREE_UNKNOWN"; + rbl = "bip.virusfree.cz"; + ipv6 = true; + returncodes { + RBL_VIRUSFREE_BLACK = "127.0.0.1"; + } + } } .include(try=true,priority=5) "${DBDIR}/dynamic/rbl.conf" diff --git a/conf/scores.d/rbl_group.conf b/conf/scores.d/rbl_group.conf index be145e350..09ea72414 100644 --- a/conf/scores.d/rbl_group.conf +++ b/conf/scores.d/rbl_group.conf @@ -149,4 +149,9 @@ symbols = { weight = 1.0; description = "Address is listed in Spameatingmonkey RBL (ipv6)"; } + + "RBL_VIRUSFREE_BLACK" { + weight = 2.0; + description = "From address is listed in virusfree.cz BL"; + } } |