diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-08-28 17:35:46 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-08-28 17:35:46 +0100 |
commit | 86ff659737387b39018be311ae5ea6d2c98e768d (patch) | |
tree | a522f544ffe5234b5363d5d6c2761cb982e9b078 /conf | |
parent | 6b3fc64375eaed30adaeabddac6d3f3a905ce0fe (diff) | |
download | rspamd-86ff659737387b39018be311ae5ea6d2c98e768d.tar.gz rspamd-86ff659737387b39018be311ae5ea6d2c98e768d.zip |
[Feature] Add spamhaus DROP dnsbl
Diffstat (limited to 'conf')
-rw-r--r-- | conf/metrics.conf | 4 | ||||
-rw-r--r-- | conf/modules.d/rbl.conf | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/conf/metrics.conf b/conf/metrics.conf index 44600b5bc..8a4eef978 100644 --- a/conf/metrics.conf +++ b/conf/metrics.conf @@ -505,6 +505,10 @@ metric { weight = 2.0; description = "From address is listed in zen pbl (Spamhaus list)"; } + symbol "RBL_SPAMHAUS_DROP" { + weight = 7.0; + description = "From address is listed in zen drop bl"; + } symbol "RECEIVED_SPAMHAUS_XBL" { weight = 3.0; description = "Received address is listed in zen xbl"; diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf index 20f3ca41b..dc2b2bdcc 100644 --- a/conf/modules.d/rbl.conf +++ b/conf/modules.d/rbl.conf @@ -34,6 +34,7 @@ rbl { RBL_SPAMHAUS_XBL3 = "127.0.0.7"; RBL_SPAMHAUS_PBL = "127.0.0.10"; RBL_SPAMHAUS_PBL1 = "127.0.0.11"; + RBL_SPAMHAUS_DROP = "127.0.0.9"; } } |