diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-05-01 17:03:39 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-05-01 17:03:39 +0100 |
commit | c3f1cc6f41a50e4c2c7c023b3fa85d0d4a31a97c (patch) | |
tree | 97d69f17c6c3e7908933ea788a8abc2d0eef4276 /conf/modules.conf | |
parent | 390c8290d7747e2ab53a821e8077ab3fc80a706f (diff) | |
download | rspamd-c3f1cc6f41a50e4c2c7c023b3fa85d0d4a31a97c.tar.gz rspamd-c3f1cc6f41a50e4c2c7c023b3fa85d0d4a31a97c.zip |
Add DBL list gradation.
Diffstat (limited to 'conf/modules.conf')
-rw-r--r-- | conf/modules.conf | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/conf/modules.conf b/conf/modules.conf index c4afed009..3bd62c672 100644 --- a/conf/modules.conf +++ b/conf/modules.conf @@ -64,6 +64,18 @@ surbl { suffix = "dbl.spamhaus.org"; symbol = "DBL"; options = "noip"; + ips = { + DBL_SPAM = "127.0.1.2"; # spam domain + DBL_PHISH = "127.0.1.4"; # phish domain + DBL_MALWARE = "127.0.1.5"; # malware domain + DBL_BOTNET = "127.0.1.6"; # botnet C&C domain + DBL_ABUSE = "127.0.1.102"; # abused legit spam + DBL_ABUSE_REDIR = "127.0.1.103"; # abused spammed redirector domain + DBL_ABUSE_PHISH = "127.0.1.104"; # abused legit phish + DBL_ABUSE_MALWARE = "127.0.1.105"; # abused legit malware + DBL_ABUSE_BOTNET = "127.0.1.106"; # abused legit botnet C&C + DBL_PROHIBIT = "127.0.1.255"; # IP queries prohibited! + } } rule { suffix = "uribl.spameatingmonkey.net"; |