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 [email protected]. > > 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 .... [email protected] 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 -- ## List details at https://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
