Cisco Cisco Email Security Appliance C170 Guia Do Utilizador

Página de 568
6-31
Cisco IronPort AsyncOS 7.5 for Email Advanced Configuration Guide
OL-25137-01
Chapter 6      Using Message Filters to Enforce Email Policies
Valid Rule
The 
valid
 rule returns false if the message contains unparsable/invalid MIME 
parts and true otherwise. For example, the following rule drops all unparsable 
messages it tests.
Subject Rule
The 
subject
 rule selects those messages where the value of the subject header 
matches the given regular expression. 
For example, the following filter discards all messages with subjects that start 
with the phrase 
Make Money...
You can specify non-ASCII characters to search for in the value of the header.
        alt-src-host('external');
   }
not-valid-mime:
   if not valid
   {
        drop();
   }
scamFilter:
   if (subject == '^Make Money')
   {
        drop();
   }