Re: [exim] strange exim ACL

Top Page
Delete this message
Reply to this message
Author: Mike Barnard
Date:  
To: exim-users
Subject: Re: [exim] strange exim ACL
Thanks for the response,


this is my ACL:

acl_check_content:

  # First unpack MIME containers and reject serious errors.
  deny  message = This message contains a MIME error ($demime_reason)
        demime = *
        condition = ${if >{$demime_errorlevel}{2}{1}{0}}


# Reject typically wormish file extensions. There is almost no
# sense in sending such files by email.

  deny  message = This message contains an unwanted file extension
($found_extension)
        demime = scr:vbs:bat:lnk:pif:plf


  # Reject virus infested messages.
  deny  message = This message contains a virus or other harmful content
($malware_name)
        malware = *


  warn  message = X-one2net-Scan-Signature: ${hmac{md5}{SECRET}\
                                            {$body_linecount}}


  warn  message = X-Spam-Score: $spam_score ($spam_bar)
        spam = nobody:true


  warn  message = X-Spam-Report: $spam_report
        spam = nobody:true
        condition = ${if >{$spam_score_int}{30}{1}{0}}


  warn message = X-Spam-Flag: YES
        spam = nobody:true
        condition = ${if <{$message_size}{500k}{1}{0}}


  deny message = X-Spam-Category: DELETE :This message scored $spam_score
points vs my spam scanner
        spam = nobody:true
        condition = ${if >{$spam_score_int}{50}{1}{0}}



  warn message = X-Spam-Category: REPORT
       spam = nobody:true
       condition = ${if >{$spam_score_int}{40}{1}{0}}
       condition = ${if <{$spam_score_int}{50}{1}{0}}


  warn message = X-Spam-Category: INSPECT
        spam = nobody:true
        condition = ${if >{$spam_score_int}{30}{1}{0}}
        condition = ${if <{$spam_score_int}{40}{1}{0}}


  warn message = X-New-Subject: XX_SPAM_REPORT_XX (score
$spam_score)$h_Subject:
       spam = nobody:true
       condition = ${if >{$spam_score_int}{40}{1}{0}}
       condition = ${if <{$spam_score_int}{50}{1}{0}}


  warn message = X-New-Subject: XX_SPAM_INSPECT_XX (score
$spam_score)$h_Subject:
       spam = nobody:true
       condition = ${if >{$spam_score_int}{30}{1}{0}}
       condition = ${if <{$spam_score_int}{40}{1}{0}}


# finally accept all the rest
accept


I dont have anywhere in my configure file where i have such an entry.....my
only guess here could be SA

mike