From f40af671012becfc18fce76789e28e35247f682f Mon Sep 17 00:00:00 2001 From: Alexey Date: Wed, 12 Feb 2014 08:29:56 -0800 Subject: Add Spameatingmonkey RBL and SURBL --- conf/modules.conf | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/conf/modules.conf b/conf/modules.conf index 41296b7bf..f721d760e 100644 --- a/conf/modules.conf +++ b/conf/modules.conf @@ -65,6 +65,22 @@ surbl { symbol = "DBL"; options = "noip"; } + rule { + suffix = "uribl.spameatingmonkey.net"; + symbol = "SEM_URIBL_UNKNOWN"; + bits { + SEM_URIBL = 2; + } + options = "noip"; + } + rule { + suffix = "fresh15.spameatingmonkey.net"; + symbol = "SEM_URIBL_FRESH15_UNKNOWN"; + bits { + SEM_URIBL_FRESH15 = 2; + } + options = "noip"; + } } rbl { default_received = false; @@ -123,6 +139,17 @@ rbl { RBL_SORBS_ZOMBIE = "127.0.0.9" } } + + sem { + symbol = "RBL_SEM_UNKNOWN"; + rbl = "bl.spameatingmonkey.net"; + ipv4 = true; + ipv6 = true; + unknown = false; + returncodes { + RBL_SEM = "127.0.0.2"; + } + } } } -- cgit v1.2.3 From 99ece568a642a799f4f0060aa98c09d5895869b9 Mon Sep 17 00:00:00 2001 From: Alexey Date: Wed, 12 Feb 2014 08:41:17 -0800 Subject: Add metric for Spameatingmonkey RBL and SURBL --- conf/metrics.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/conf/metrics.conf b/conf/metrics.conf index 1ba3e03a1..088d6aaca 100644 --- a/conf/metrics.conf +++ b/conf/metrics.conf @@ -388,6 +388,10 @@ metric { name = "RBL_SORBS_ZOMBIE"; description = "List of networks hijacked from their original owners, some of which have already used for spamming."; } + + symbol { name = "RBL_SEM_UNKNOWN"; weight = 0.0; description = "Address is listed in Spameatingmonkey RBL"; } + symbol { name = "RBL_SEM"; weight = 1.0; description = "Address is listed in Spameatingmonkey RBL"; } + symbol { weight = 3.0; description = "Text and HTML parts differ"; @@ -548,6 +552,13 @@ metric { description = "rambler.ru uribl"; name = "RAMBLER_URIBL"; } + + symbol { weight = 0.0; name = "SEM_URIBL_UNKNOWN"; description = "Spameatingmonkey uribl unknown"; } + symbol { weight = 3.5; name = "SEM_URIBL"; description = "Spameatingmonkey uribl"; } + + symbol { weight = 0.0; name = "SEM_URIBL_FRESH15_UNKNOWN"; description = "Spameatingmonkey uribl unknown"; } + symbol { weight = 3.0; name = "SEM_URIBL_FRESH15"; description = "Spameatingmonkey uribl. Domains registered in the last 15 days (.AERO,.BIZ,.COM,.INFO,.NAME,.NET,.PRO,.SK,.TEL,.US)"; } + symbol { weight = 5.500000; description = "DBL uribl"; -- cgit v1.2.3 From 75c80c6f6ecbbd8cc9162dd00b75d56ac6015187 Mon Sep 17 00:00:00 2001 From: Alexey Date: Wed, 12 Feb 2014 08:47:15 -0800 Subject: Fix setting for Spameatingmonkey RBL Remove ipv6 support for RBL --- conf/modules.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/modules.conf b/conf/modules.conf index f721d760e..f9d076e7c 100644 --- a/conf/modules.conf +++ b/conf/modules.conf @@ -144,7 +144,7 @@ rbl { symbol = "RBL_SEM_UNKNOWN"; rbl = "bl.spameatingmonkey.net"; ipv4 = true; - ipv6 = true; + ipv6 = false; unknown = false; returncodes { RBL_SEM = "127.0.0.2"; -- cgit v1.2.3