>> I have a user receiving a bunch of bounces from spam they did not
>> send. Its all from a free email provider I cannot seem to find an easy
>> contact for. Is there a simple way to defer or reject all messages
>> from "<>" and too "somebody@???" in exim.conf?
Came up with this:
# : ips.backscatterer.org
defer
dnslists = ips.backscatterer.org
!condition = ${if eq{$interface_port}{587} }
verify=recipient
senders = :
message = $sender_host_address is in the ips.backscatterer.org blacklist
Think it is solving my issues.
Matt