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

Pàgina inicial
Delete this message
Reply to this message
Autor: Jakob Hirsch
Data:  
A: Michael Ben-Nes
CC: exim-users
Assumpte: Re: [exim] Re: Skip ACL action on specific mail address
Michael Ben-Nes wrote:
> is this posible then ?
>
> ${if and
> {{>{$spam_score_int}{45}{1}{0}}{!eq{$return_path}{spam-box@???}}}


Yes, but it's not nice, visually and technically. The message does not
have to be scanned if the sender is spam-box@...
Better do:

deny
  message         = This message scored $spam_score spam points.
  ! senders = spam-box@???
  spam            = nobody:true
  condition       = ${if >{$spam_score_int}{45}{1}{0}}