Ben Whyte wrote:
I am fortunate in that I run my own cohosted mail server, running exim
which passes the messages through spamassassin and clamav before
delivering.
So I need to see how I can prevent exim from handing off the mail to
spamassassin where possible ?
If you're running it via the Content Scanning Extensions (aka Exiscan)
it's as simple as not calling the acl rule. A simple example would be:
your_data_acl:
...
accept senders = [EMAIL PROTECTED]
# now put the rest of your usual spamassassin calls, e.g.
deny message = something about it being spam
spam = someuser
condition = ${something}
...
This discussion would be better over on the exim-users list though.
Tim