Cisco Cisco Email Security Appliance C160 Mode D'Emploi

Page de 1197
 
9-59
User Guide for AsyncOS 9.7 for Cisco Email Security Appliances
 
Chapter 9      Using Message Filters to Enforce Email Policies
  Message Filter Actions
Skip Remaining Message Filters Action
The 
skip-filters
 action ensures that the message skips any further processing from message filters and 
continues through the email pipeline. The message that incurs the 
skip-filters
 action will be subject 
to anti-spam scanning and anti-virus scanning, if it is available on the appliance. The 
skip-filters
 
action is the default final action for message filters.
The following filter notifies 
customercare@example.com
 and then immediately delivers any message 
addressed to 
boss@admin
.
Drop Action
The 
drop
 action discards a message without any delivery. The message is not returned to the sender, not 
sent to the intended recipient, nor processed further in any way.
bossFilter:
   if(rcpt-to == 'boss@admin$')
   {
        notify('customercare@example.com');
 skip-filters();
   }