Cisco Cisco Email Security Appliance C170 Guia Do Utilizador

Página de 1094
 
9-100
Cisco AsyncOS 8.0.1 for Email User Guide
 
Chapter 9      Using Message Filters to Enforce Email Policies
  Message Filter Examples
SRBS Filter
SenderBase Reputation filter:
Alter SRBS Filter
Alter the (SenderBase Reputation Score) SBRS threshold for certain domains: 
Filename Regex Filter
This filter specifies a range of size for the body of the message, and looks for an attachment that matches 
the regular expression (this matches files named “readme.zip”, “readme.exe”, “attach.exe”, and so 
forth.):
Show SenderBase Reputation Score in Header Filter
Remember to log the headers (see the “Logging” chapter) so they appear in the mail log:
note_bad_reps: 
if (reputation < -2)  { 
  strip-header ('Subject'); 
  insert-header ('Subject', '***BadRep $Reputation *** $Subject');
}
mod_sbrs:
if ( (rcpt-count == 1) AND (rcpt-to == "@domain\\.com$") AND (reputation < -2) ) { 
    drop (); 
}
filename_filter: 
if ((body-size >= 9k) AND (body-size <= 20k)) { 
   if (body-contains ("(?i)(readme|attach|information)\\.(zip|exe)$")) { 
      drop (); 
   } 
Check_SBRS:
if (true) {