Cisco Cisco Email Security Appliance X1050 Guida Utente

Pagina di 570
6-345
Cisco IronPort AsyncOS 7.3 for Email Advanced Configuration Guide
OL-23081-01
Chapter 6      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');
        }