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

Inizio della pagina
Delete this message
Reply to this message
Autore: Jeremy Harris
Data:  
To: exim-users @ exim. org
Oggetto: 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