diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-02-13 13:11:26 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-02-13 13:11:26 +0000 |
commit | 3f20ce12288aa5726eb86a86301db7fdedccc850 (patch) | |
tree | f17a56603aca270c05ca96b7cea38b094eddc8cb /conf | |
parent | 1d28239b87fab8a06bdcb32f5a0f598ff0d406b6 (diff) | |
parent | 75c80c6f6ecbbd8cc9162dd00b75d56ac6015187 (diff) | |
download | rspamd-3f20ce12288aa5726eb86a86301db7fdedccc850.tar.gz rspamd-3f20ce12288aa5726eb86a86301db7fdedccc850.zip |
Merge pull request #46 from AlexeySa/master
Added Spameatingmonkey RBL, URIBL and fresh URIBL
Diffstat (limited to 'conf')
-rw-r--r-- | conf/metrics.conf | 11 | ||||
-rw-r--r-- | conf/modules.conf | 27 |
2 files changed, 38 insertions, 0 deletions
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"; diff --git a/conf/modules.conf b/conf/modules.conf index 712671b30..4ad8fc88c 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 { @@ -118,6 +134,17 @@ rbl { RBL_SORBS_ZOMBIE = "127.0.0.9" } } + + sem { + symbol = "RBL_SEM_UNKNOWN"; + rbl = "bl.spameatingmonkey.net"; + ipv4 = true; + ipv6 = false; + unknown = false; + returncodes { + RBL_SEM = "127.0.0.2"; + } + } } } |