Cisco Cisco Email Security Appliance C680 User Guide

Page of 548
Chapter 5      Using Message Filters to Enforce Email Policies
5-370
Cisco IronPort AsyncOS 7.1 for Email Advanced Configuration Guide
OL-22164-02
Bypass Anti-Virus System Action
The 
skip-viruscheck
 action instructs the system to allow the message to bypass 
any virus protection system configured on the system. This action does nothing to 
the message if there is no anti-virus system configured, or if the message was 
never flagged to be scanned for viruses in the first place.
The following example specifies that messages received on the listener 
“private_listener” should bypass the anti-spam and the anti-virus systems.
internal_mail_is_safe:
   if (recv-listener == 'private_listener') 
   {
        skip-spamcheck();
        skip-viruscheck();
   }
Bypass Virus Outbreak Filter Scanning Action
The 
skip-vofcheck
 action instructs the system to allow the message to bypass the 
Virus Outbreak Filters scanning. This action does nothing to the message if Virus 
Outbreak Filter scanning is not enabled.
The following example specifies that messages received on the listener 
“private_listener” should bypass Virus Outbreak Filter scanning.
        skip-spamcheck();
   }
internal_mail_is_safe:
   if (recv-listener == 'private_listener') 
   {