Cisco Cisco Email Security Appliance C370D Guia Do Utilizador

Página de 570
6-357
Cisco IronPort AsyncOS 7.3 for Email Advanced Configuration Guide
OL-23081-01
Chapter 6      Using Message Filters to Enforce Email Policies
The following example notifies an administrator if the signer is not from 
example.com:
NotOurSigners: if signed-certificate("signer") AND
      signed-certificate("signer") != "example\\.com$" {
    notify("admin@example.com");
}
The following example adds a header if the message has an X.509 certificate:
AnyX509: if signed-certificate ("issuer") {
    insert-header("X-Test", "X.509 present");
}
The following example adds a header if the message’s certificate does not have a 
signer:
NoSigner: if not signed-certificate ("signer") {
    insert-header("X-Test", "Old X.509?");
}