Cisco Cisco Email Security Appliance C680 Guía Del Usuario

Descargar
Página de 548
5-337
Cisco IronPort AsyncOS 7.1 for Email Advanced Configuration Guide
OL-22164-02
Chapter 5      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?");
}