Re: [exim] Skip ACL action on specific mail address

Page principale
Supprimer ce message
Répondre à ce message
Auteur: Jeremy Harris
Date:  
À: exim-users @ exim. org
Sujet: Re: [exim] Skip ACL action on specific mail address
Michael Ben-Nes wrote:
> deny    message        = This message scored $spam_score spam points.
>     spam        = nobody:true
>     condition    = ${if >{$spam_score_int}{45}{1}{0}}

>
> I want to skip this rule if the address is allmail@???.
> but im not sure how to write two conditions in the same rule.


You can just use multiple "condition =" lines.

For more complex stuff, there are and/or available in ${if }.
See http://exim.org/exim-html-4.50/doc/html/spec.html

- Jeremy