Cisco Cisco Email Security Appliance C170 Guia Do Utilizador

Página de 570
Chapter 6      Using Message Filters to Enforce Email Policies
6-390
Cisco IronPort AsyncOS 7.3 for Email Advanced Configuration Guide
OL-23081-01
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') 
   {