diff options
author | heraklit256 <heraklit256@users.noreply.github.com> | 2018-10-29 21:06:36 +0100 |
---|---|---|
committer | heraklit256 <heraklit256@users.noreply.github.com> | 2018-10-29 21:06:36 +0100 |
commit | b6d1cf00f7c64e2e156f17c793c7866f982961b5 (patch) | |
tree | f31b9de7d8bb5643de4d88057069b6b6561ed151 /conf/modules.d | |
parent | 5f4617948c64483dfb648b5bfe784f8c84dd87ea (diff) | |
download | rspamd-b6d1cf00f7c64e2e156f17c793c7866f982961b5.tar.gz rspamd-b6d1cf00f7c64e2e156f17c793c7866f982961b5.zip |
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"; } } |