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

Message filter syntax for Quarantine and Continue ?

Vinay babu
Level 1
Level 1

Message filter syntax for Quarantine and Continue, with x header condition.

1 Reply 1

To put it in a policy quarantine, probably something like this:

 

check_Vinays_header:

if (header('X-Vinays_header') == 'nice guy')

{

quarantine ('Policy');

}

 

 

If you want to put it in the SPAM quarantine, where users can release it, use this as the action instead:

 

check_Vinays_header:

if (header('X-Vinays_header') == 'nice guy')

{

insert-header('X-Ironport-Quarantine');

}