aboutsummaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-08-09 11:54:11 +0100
committerGitHub <noreply@github.com>2018-08-09 11:54:11 +0100
commit0ebcb5c9fb90363a2afff95f3f1af827fcf9b287 (patch)
tree3998b79382680f7ddd28f4b4292ed3f554183163 /conf
parenta756a6ef6a58c3062def2a8a0795498ab8568f94 (diff)
parent848e8f6614b0aae52308b54abda4dfca8b59a7aa (diff)
downloadrspamd-0ebcb5c9fb90363a2afff95f3f1af827fcf9b287.tar.gz
rspamd-0ebcb5c9fb90363a2afff95f3f1af827fcf9b287.zip
Merge pull request #2404 from heraklit256/rbl-nixspam
add NiX spam RBL
Diffstat (limited to 'conf')
-rw-r--r--conf/modules.d/rbl.conf6
-rw-r--r--conf/scores.d/rbl_group.conf15
2 files changed, 16 insertions, 5 deletions
diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf
index f3373c2ae..2a9e211d4 100644
--- a/conf/modules.d/rbl.conf
+++ b/conf/modules.d/rbl.conf
@@ -125,6 +125,12 @@ rbl {
RBL_VIRUSFREE_BOTNET = "127.0.0.2";
}
}
+
+ nixspam {
+ symbol = "RBL_NIXSPAM";
+ rbl = "ix.dnsbl.manitu.net";
+ ipv6 = true;
+ }
}
.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 6c48cf3bb..8f6542ae5 100644
--- a/conf/scores.d/rbl_group.conf
+++ b/conf/scores.d/rbl_group.conf
@@ -67,7 +67,7 @@ symbols = {
}
"RBL_SPAMHAUS_DROP" {
weight = 7.0;
- description = "From address is listed in ZEN DROP bl";
+ description = "From address is listed in ZEN DROP BL";
}
"RECEIVED_SPAMHAUS_SBL" {
weight = 1.0;
@@ -91,7 +91,7 @@ symbols = {
}
"RECEIVED_SPAMHAUS_DROP" {
weight = 6.0;
- description = "Received address is listed in ZEN DROP bl";
+ description = "Received address is listed in ZEN DROP BL";
one_shot = true;
}
@@ -142,16 +142,21 @@ symbols = {
"RBL_SEM" {
weight = 1.0;
- description = "Address is listed in Spameatingmonkey RBL";
+ description = "From address is listed in Spameatingmonkey RBL";
}
"RBL_SEM_IPV6" {
weight = 1.0;
- description = "Address is listed in Spameatingmonkey RBL (ipv6)";
+ description = "From address is listed in Spameatingmonkey RBL (IPv6)";
}
"RBL_VIRUSFREE_BOTNET" {
weight = 2.0;
- description = "Source IP is listed in virusfree.cz BL";
+ description = "From address is listed in virusfree.cz BL";
+ }
+
+ "RBL_NIXSPAM" {
+ weight = 4.0;
+ description = "From address is listed in NiX Spam (http://www.dnsbl.manitu.net/)";
}
}