Re: [exim] Filtering spam bounces

Top Page
Delete this message
Reply to this message
Author: Jakob Hirsch
Date:  
To: Alastair Campbell
CC: exim-users
Subject: Re: [exim] Filtering spam bounces
Alastair Campbell wrote:

> Jacob's suggestion was for acl_check_rcpt:

    ^ <harrumph> :)


> deny senders = : ! local_parts = known@??? :
> another@??? message = This address never sends out mail, so it
> cannot get bounces.
>
> Is there is a way of selecting the catch all, in my case defined at the
> end of: /etc/mail/virtual/domain.com
> *:    my_username@localhost


So you have your "normal" addresses in this file and this wildcard entry
at the end? Then you can use this:

! local_parts = lsearch;/etc/mail/virtual/domain.com
(as opposed to the "lsearch*" you are likely using in some redirect router)

to get get this:

> If I can say "anything that dropped through to the catch all" instead of
> putting in individual addresses for local_parts, that would be perfect...