diff dnsbl.conf @ 259:be939802c64e

add recipient rate limits by email from address or domain
author Carl Byington <carl@five-ten-sg.com>
date Sat, 21 Jul 2012 08:34:04 -0700
parents d6d5c50b9278
children e118fd2c6af0
line wrap: on
line diff
--- a/dnsbl.conf	Sun Jul 01 10:34:43 2012 -0700
+++ b/dnsbl.conf	Sat Jul 21 08:34:04 2012 -0700
@@ -7,7 +7,7 @@
     content on {
         filter    sbl-xbl.spamhaus.org        "Mail containing %s rejected - sbl; see http://www.spamhaus.org/query/bl?ip=%s";
         uribl     multi.surbl.org             "Mail containing %s rejected - surbl; see http://www.rulesemporium.com/cgi-bin/uribl.cgi?bl0=1&domain0=%s";
-        #uribl    black.uribl.com             "Mail containing %s rejected - uribl; see http://l.uribl.com/?d=%s";
+        #uribl    multi.uribl.com             "Mail containing %s rejected - uribl; see http://l.uribl.com/?d=%s";
         ignore    { include "hosts-ignore.conf"; };
         tld       { include "tld.conf"; };
         cctld     { include "cctld.conf"; };
@@ -28,12 +28,15 @@
         "<>"    black;
     };
 
-    // hourly recipient rate limit by smtp auth client id
+    // hourly recipient rate limit by smtp auth client id,
+    // or unauthenticated mail from address
     // default hourly limit is 30
     // daily limits are 4 times the hourly limit
     rate_limit 30 4 { // default
         #fred 100;   // override default limits
         #joe  10;    // ""
+        #sam@somedomain.tld  500;
+        #@otherdomain.tld    100;
     };
 };
 
@@ -49,7 +52,7 @@
     content on {
         filter    sbl-xbl.spamhaus.org        "Mail containing %s rejected - sbl; see http://www.spamhaus.org/query/bl?ip=%s";
         uribl     multi.surbl.org             "Mail containing %s rejected - surbl; see http://www.rulesemporium.com/cgi-bin/uribl.cgi?bl0=1&domain0=%s";
-        #uribl    black.uribl.com             "Mail containing %s rejected - uribl; see http://l.uribl.com/?d=%s";
+        #uribl    multi.uribl.com             "Mail containing %s rejected - uribl; see http://l.uribl.com/?d=%s";
         ignore    { include "hosts-ignore.conf"; };
         tld       { include "tld.conf"; };
         cctld     { include "cctld.conf"; };