Blacklists

hci

Verified User
Joined
Jun 15, 2004
Messages
355
When using Sendmail I used the below syntax in sendmail.cf to block based on various blacklists.

#
# DNS based IP address spam list relays.orbd.org
R$* $: $&{client_addr}
R$-.$-.$-.$- $: <?> $(host $4.$3.$2.$1.relays.ordb.org. $: OK $)
R<?>OK $: OKSOFAR
R<?>$+ $#error $@ 5.7.1 $: "Open relay: " $&{client_addr} " blocked by relays.ordb.org: http://ordb.org/look$

How do I do this with Exim?

Matthew
 
Presuming you're using exim.4.x, you can use the preconfigured exim.conf file found here if you'd like, but if you do, be sure to read the thread here for information on how to use it.

Or you may look here for the ACL relevant ACL sections.

Note that you may have to do a bit more than just change the exim.conf file.

Jeff
 
Back
Top