Cisco Cisco Email Security Appliance C160 Mode D'Emploi

Page de 548
5-325
Cisco IronPort AsyncOS 7.1 for Email Advanced Configuration Guide
OL-22164-02
Chapter 5      Using Message Filters to Enforce Email Policies
require that all the content parts individually match the dictionary. The scores of 
each content part (taking into account multipart/alternative parts) are added 
together.
quarantine_data_loss_prevention:  
   if (body-dictionary-match ('secret_words')) 
       {
       quarantine('Policy');
       }
In the following filter, a subject that matches a term in the specified dictionary is 
quarantined:
quarantine_policy_subject:  
    if (subject-dictionary-match ('gTest'))
        {
        quarantine('Policy');
        }
This example matches an email address in the “to” header and blind copies an 
administrator:
headerTest:
    if (header-dictionary-match ('competitorsList', 'to'))
        {
        bcc('administrator@example.com');
        }