aboutsummaryrefslogtreecommitdiffstats
path: root/conf/modules.d
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2015-11-27 16:55:41 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2015-11-27 16:55:41 +0000
commitf9dd36d01c539171f3e6c90d49f8b63a895e60b1 (patch)
tree56996579a3b6ef05a19438f1fcda5d9e0ec525cb /conf/modules.d
parent12e4ec8a6ef2f17f0de4bd1ccb5905634e0fd824 (diff)
downloadrspamd-f9dd36d01c539171f3e6c90d49f8b63a895e60b1.tar.gz
rspamd-f9dd36d01c539171f3e6c90d49f8b63a895e60b1.zip
Add config for spamhaus SBL to uribl
Diffstat (limited to 'conf/modules.d')
-rw-r--r--conf/modules.d/surbl.conf16
1 files changed, 12 insertions, 4 deletions
diff --git a/conf/modules.d/surbl.conf b/conf/modules.d/surbl.conf
index f52b50a74..731c7fa64 100644
--- a/conf/modules.d/surbl.conf
+++ b/conf/modules.d/surbl.conf
@@ -31,7 +31,7 @@ surbl {
rule {
suffix = "dbl.spamhaus.org";
symbol = "DBL";
- options = "noip";
+ no_ip = true;
ips = {
# spam domain
DBL_SPAM = "127.0.1.2";
@@ -56,12 +56,20 @@ surbl {
}
}
rule {
+ suffix = "zen.spamhaus.org";
+ symbol = "ZEN_URIBL";
+ resolve_ip = true;
+ ips {
+ URIBL_SBL = "127.0.0.2";
+ }
+ }
+ rule {
suffix = "uribl.spameatingmonkey.net";
symbol = "SEM_URIBL_UNKNOWN";
bits {
SEM_URIBL = 2;
}
- options = "noip";
+ no_ip = true;
}
rule {
suffix = "fresh15.spameatingmonkey.net";
@@ -69,7 +77,7 @@ surbl {
bits {
SEM_URIBL_FRESH15 = 2;
}
- options = "noip";
+ no_ip = true;
}
}
@@ -228,4 +236,4 @@ rbl {
}
}
-} \ No newline at end of file
+}