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

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Jeremy Harris
Data:  
Para: exim-users @ exim. org
Asunto: 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