cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1037
Views
0
Helpful
2
Replies

Quarantine EXEs and Notifications

Mike Luebbers
Level 1
Level 1

We are trying to accomplish the following and wonder if anyone has ever done this before. We want to do the following:

  1. Quarantine all executables that are being delivered inbound.
  2. Have the original recipient (the receiver of the message with the executable was intended for) receive a quarantine notification.
  3. Within the quarantine notification have the option to release the executeable

Thanks

2 Replies 2

ravi saini
Level 1
Level 1

Hi Mike,

Following message filter will work:

exe_attachment:

if (attachment-filetype == “Executable”)

{

insert-hearder("X-IronPort-Quarantine")

}

for incoming emails you can create a same content filter to insert the header in incoming mail policies

and if you have enabled spam notification ,recipient will recieve notification and he can release the email.

Thanks Ravi, I will give that a try!