> -----Original Message-----
> From: Marc Perkel [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, June 22, 2006 09:15
> To: users@spamassassin.apache.org
> Subject: DNS Whitelists
> 
> Are there any DNS bases whitelists out there? If not - 
> shouldn't we build one?
> 
> I need two different kinds of DNS whitelists. One would be 
> hosts that NEVER send spam. Large banks, etc.
> 
> The second list is a list of hosts that should never be blacklisted. 
> These are hosts that might send some spam but should never 
> accidentally be blacklisted because of it. Examples would be 
> *.aol.com, *.earthlink.nat, *.yahoo.com. The idea here for 
> those of us who are trying to build really reliable 
> blacklists to reference these lists as hosts to never blacklist.
> 
> Any thoughts on this?
> 
> 

# ping aol.com.white.uribl.com
PING aol.com.white.uribl.com (127.0.0.2) 56(84) bytes of data.
64 bytes from localhost (127.0.0.2): icmp_seq=1 ttl=64 time=0.095 ms

# ping otherdomain.com.white.uribl.com
ping: unknown host otherdomain.com.white.uribl.com


white.uribl.com will probably do exactly what you want here... but just
realize spammers can include these domains in their spam also.

you could always do something like...

urirhssub       URIBL_BLACK     multi.uribl.com.        A   2
body            URIBL_BLACK     eval:check_uridnsbl('URIBL_BLACK')
describe        URIBL_BLACK     Contains an URL listed in the URIBL
blacklist
tflags          URIBL_BLACK     net
score           URIBL_BLACK     3

urirhssub       URIBL_WHITE     white.uribl.com.        A   2
body            URIBL_WHITE     eval:check_uridnsbl('URIBL_WHITE')
describe        URIBL_WHITE     Contains an URL listed in the URIBL
whitelist
tflags          URIBL_WHITE     net
score           URIBL_WHITE     -2

meta                URIBL_COMPENSATE  (URIBL_BLACK && URIBL_WHITE)
describe        URIBL_COMPENSATE  Contains an URL listed on both URIBL black
and white
score             URIBL_COMPENSATE  1

dallase
http://uribl.com

Reply via email to