Browse Source

Merge pull request #2471 from heraklit256/rbl-blocklist

Add blocklist.de RBL
tags/1.8.0
Vsevolod Stakhov 5 years ago
parent
commit
a110835223
No account linked to committer's email address
2 changed files with 25 additions and 0 deletions
  1. 15
    0
      conf/modules.d/rbl.conf
  2. 10
    0
      conf/scores.d/rbl_group.conf

+ 15
- 0
conf/modules.d/rbl.conf View File

@@ -131,6 +131,21 @@ rbl {
rbl = "ix.dnsbl.manitu.net";
ipv6 = true;
}

blocklistde {
symbol = "RBL_BLOCKLISTDE";
rbl = "bl.blocklist.de";
ipv6 = true;
}

blocklistde_received {
symbol = "RECEIVED_BLOCKLISTDE";
rbl = "bl.blocklist.de";
ipv6 = true;
received = true;
from = false;
ignore_whitelists = true;
}
}

.include(try=true,priority=5) "${DBDIR}/dynamic/rbl.conf"

+ 10
- 0
conf/scores.d/rbl_group.conf View File

@@ -159,4 +159,14 @@ symbols = {
weight = 4.0;
description = "From address is listed in NiX Spam (http://www.dnsbl.manitu.net/)";
}

"RBL_BLOCKLISTDE" {
weight = 4.0;
description = "From address is listed in Blocklist (https://www.blocklist.de/)";
}

"RECEIVED_BLOCKLISTDE" {
weight = 3.0;
description = "Received address is listed in Blocklist (https://www.blocklist.de/)";
}
}

Loading…
Cancel
Save