Re: how to SKIP BROKEN ANTIVIRUS?

"Nick K. Kozubsky" <[email protected]> Tue, 12 Oct 2004 14:44:02 +0300
Newsgroups gmane.mail.exim.exiscan.user
Organization BIPTELECOM
Message-ID <[email protected]>
Tom Kistner wrote:
 > Nick K. Kozubsky wrote:
 >
 >> Is the method to skip broken checkers and follow to next checker or
 >> delive message without check at all?
 >
 >
 > You can use /defer_ok on the malware condition:
 >
 > Like with the "spam" condition, you can append '/defer_ok'  to
 > the malware condition  to accept messages  even if there  is a
 > problem with the virus scanner, like this:
 >
 > /* ----------------------
 > deny message = This message contains malware ($malware_name)
 >      demime = *
 >      malware = */defer_ok
 > ---------------------- */
 >
 > /tom
 >
 >

Can I add '/defer_ok' into antispam block like this:

# Reject spam messages with score over 5.0, using an extra condition.
   deny  message = This spam message scored $spam_score points.
         condition = ${if <{$message_size}{300k}{1}{0}}
         spam = nobody:true/defer_ok
         condition = ${if >{$spam_score_int}{50}{1}{0}}

???


nick