Re: [exim] exim timing out - help

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Ted Cooper
Data:  
Para: jean-paul natola
CC: exim-users
Temas novos: Re: [exim] exim timing out - help- UPDATE
Asunto: Re: [exim] exim timing out - help
jean-paul natola wrote:
>
>
>> jean-paul natola wrote:
>>> How did you up it, if I may ask?
>> In my exim ACLs.
>>
> As I mentioned earlier , I'm pretty new at this, where and what ACL did you
> add/edit to accomplish this.


It's entirely based on how you've written your ACL's. The keywords
you're looking for are "malware" for clamd and "spamd" for SA.
This is part of my SA setup in my DATA ACL's which limits the scan size
to 80k, but only if it breaks the 5.0 spam threshold.

# Add spam report to headers
   warn    message       = X-Spam-Report: $spam_report
           condition     = ${if <{$message_size}{80k}{1}{0}}
           spam          = spamd:true
           condition     = ${if >{$spam_score_int}{50}{1}{0}}


Ted.