dawnshade wrote:

routers:
# Spam Assassin
spamcheck_router:
  no_verify
  driver = accept
  condition = "${if and { {!def:h_X-Spam-Flag:} {!eq {$received_protocol}{spam-scanned}}} 
{1}{0}}"
  transport = spamcheck
[...]
In this case: [EMAIL PROTECTED] - not real address. How i can tell to
Spamassassin don't doing this????

It isn't spamd that is bouncing. Exim is bouncing it, probably because it was sent to a local user (local_part) who doesn't exist on your machine. Exim shouldn't ever have accepted the mail in the first place:
1: if the user does not exist,
2: if there is no alias for the recipient to whom the message was sent,
3: or if the recipient isn't present in a virtual user table.


To avoid Exim accepting mail for non-existent recipients, add "check_local_user" to your router spec.

To avoid Exim scanning mail from local users, you could best add
"senders = !$local_part" to the router, as well.

Best,

Tony

--
Tony Earnshaw

I love the music of Wagner. The only sound that
pleases me more is that of a cat outside my 9th
floor window, trying to cling to the glass with
its claws.

http://j-walk.com/blog/docs/conference.htm
http://www.billy.demon.nl
Mail: [EMAIL PROTECTED]



-------------------------------------------------------
This SF.Net email sponsored by: Parasoft
Error proof Web apps, automate testing & more.
Download & eval WebKing and get a free book.
www.parasoft.com/bulletproofapps1
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to