Am 20.03.2017 um 16:16 schrieb Ronaldo Luiz de Carvalho via Exim-users:
> Hi all,
>
> How could I set exim to not block a specific sender on all block process
> (spam, RBL's, etc...) ? For example block test@???.
>
> Thanks for any help and best regards,
>
> Ronaldo Luiz
>
>
>
Simple:
You write an ACL rule and ACCEPT the message from this address,
before the other rules reject it.
i.e.
accept message = whiteliste for .... test@???
condition = ${if match{$sender_address}{\Ntest@example\.com\N}{1}{0}}
...
drop message = clearly a spammer
condition = ... WHATEVER Condition is used to drop a message .....
best regards,
Marius