diff options
author | Alexey <AlexeySa@users.noreply.github.com> | 2014-02-12 08:29:56 -0800 |
---|---|---|
committer | Alexey <AlexeySa@users.noreply.github.com> | 2014-02-12 08:29:56 -0800 |
commit | f40af671012becfc18fce76789e28e35247f682f (patch) | |
tree | ad38fcef7afd7a00a55d593cf2ef982b89033d7d /conf/modules.conf | |
parent | 7bd58d67959af78e047fba631b771a2355e1b6c7 (diff) | |
download | rspamd-f40af671012becfc18fce76789e28e35247f682f.tar.gz rspamd-f40af671012becfc18fce76789e28e35247f682f.zip |
Add Spameatingmonkey RBL and SURBL
Diffstat (limited to 'conf/modules.conf')
-rw-r--r-- | conf/modules.conf | 27 |
1 files changed, 27 insertions, 0 deletions
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"; + } + } } } |