How reject spam from 3 of best blacklists

xemaps

Verified User
Joined
Apr 13, 2006
Messages
385
Location
Europe
This ACL reject 3 bl and avoid spamassassin/clamav scanning

code to add for exim.conf 4.6x ACL

drop message = $sender_host_address is blacklisted at $dnslist_domain
hosts = !+relay_hosts
# domains = +use_rbl_domains
!authenticated = *
dnslists = bl.spamcop.net : \
sbl-xbl.spamhaus.org : \
list.dsbl.org
delay = 20s

You are free to choose the place to insert this ACL, i suggest after verify RFC 2821 if you have such a rule.
Modify/comment according your needs.
 
OR you can simply enable the SpamBlocker already in exim.conf by adding the domains to /etc/use_rbl_domains :) A simple way to manage this would be the SpamBlocker plugin, search these forums for more information on SpamBlocker or the SpamBlocker plugin :)

Regards,
 
this spamblocker never worked on my conf, as i said, and don't need neither buy plugin, so i added this acl
 
Back
Top