Re: [exim] exim timing out - help

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Ted Cooper
日付:  
To: jean-paul natola
CC: exim-users
新しいトピック: Re: [exim] exim timing out - help- UPDATE
題目: 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.