diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-03-10 21:15:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-10 21:15:24 +0000 |
commit | 71631e8a3053b63d728eda53abec27fcbc7afd2c (patch) | |
tree | b5be8cdfd73e27c7b77fb2ad36d149511f3af7ff /conf/modules.d | |
parent | b53bea90eb9593530258eb05f7066f53b050410e (diff) | |
parent | 66067de1fbcc1ef2bfdd0935f6ac146aba9e5158 (diff) | |
download | rspamd-71631e8a3053b63d728eda53abec27fcbc7afd2c.tar.gz rspamd-71631e8a3053b63d728eda53abec27fcbc7afd2c.zip |
Merge pull request #2616 from heraklit256/uribl-spamhaus
also query resolved IPs against Spamhaus ZEN
Diffstat (limited to 'conf/modules.d')
-rw-r--r-- | conf/modules.d/surbl.conf | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/conf/modules.d/surbl.conf b/conf/modules.d/surbl.conf index 6973e7bef..f8c046aa9 100644 --- a/conf/modules.d/surbl.conf +++ b/conf/modules.d/surbl.conf @@ -87,12 +87,15 @@ EOD; } } - "SBL_URIBL" { - suffix = "sbl.spamhaus.org"; + "SPAMHAUS_ZEN_URIBL" { + suffix = "zen.spamhaus.org"; resolve_ip = true; ips { URIBL_SBL = "127.0.0.2"; URIBL_SBL_CSS = "127.0.0.3"; + URIBL_XBL = ["127.0.0.4", "127.0.0.5", "127.0.0.6", "127.0.0.7"]; + URIBL_PBL = ["127.0.0.10", "127.0.0.11"]; + URIBL_DROP = "127.0.0.9"; } } |