Re: [Exim] Help filtering out From:<>

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: Linux
CC: exim-users
Subject: Re: [Exim] Help filtering out From:<>
Linux wrote:

> Here is what I have in /usr/exim/configure:


Next time please only post the relevant parts

> spamcheck_router:
>   condition = "${if and { {!def:h_X-Spam-Flag:} {!eq \
>                 {$received_protocol}{spam-scanned}} \
>                 {!eq {$received_protocol}{local}} } {1}{0}}"
>   driver = accept


1.) you should make driver the first option, this is more common.
2.) add
        senders = !:
     this should do the trick, if not, try
     senders = ${if eq {$sender_address}{}{GARBAGE}{$sender_address}}


> transport = spamcheck



Nico