cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1596
Views
0
Helpful
1
Replies

Cisco Ironport Filter Scripting

linus.laeubli
Level 1
Level 1

Hello everyone,

I recently looked into Anti-Spoofing with a Custom Filter Script.

if ( (sendergroup != "relaylist") )
{
if ((header-dictionary-match("anti-spoof","From", 1)) OR (mail-from-dictionary-match("anti-spoof", 1)))
{
quarantine ('Policy');
}
}
.

This script works like a charm.

However it left me wondering, how could I extend or make my own scripts.

No amount of googling has given me any kind of good reference guide to the syntax used.

Does anyone here have some pointers maybe?

Cheers!

Linus

1 Accepted Solution

Accepted Solutions

Robert Sherwin
Cisco Employee
Cisco Employee

The User Guide will contain most all the information you are looking for:

see ---> Using Message Filters to Enforce Email Policies

Other articles of interest:

How do I write more efficient message filters?

ESA Message Filter Action Descriptions

There are many examples of message and content filters in our TechNotes, but - you'll need to have an issue in mind and search specifically for that...

I hope this helps!

-Robert

(*If you have received the answer to your original question, and found this helpful/correct - please mark the question as answered, and be sure to leave a rating to reflect!)

View solution in original post

1 Reply 1

Robert Sherwin
Cisco Employee
Cisco Employee

The User Guide will contain most all the information you are looking for:

see ---> Using Message Filters to Enforce Email Policies

Other articles of interest:

How do I write more efficient message filters?

ESA Message Filter Action Descriptions

There are many examples of message and content filters in our TechNotes, but - you'll need to have an issue in mind and search specifically for that...

I hope this helps!

-Robert

(*If you have received the answer to your original question, and found this helpful/correct - please mark the question as answered, and be sure to leave a rating to reflect!)