Hi, in Content Filtering we have a number of file types blocked, but it doesn't give the extention types.
Is there a way of extracting what file extensions are being blocked?
This thread was automatically locked due to age.
Hi, in Content Filtering we have a number of file types blocked, but it doesn't give the extention types.
Is there a way of extracting what file extensions are being blocked?
FWIW, using PureMessage for UNIX, we have the following code snippet to add a banner in place of removed
# attr NAME=Replace suspect attachments
if pmx_suspect_attachment :inspect_archives {
pmx_mark1 "suspect";
pmx_drop_attachment;
pmx_add_banner :body :use_html_pre :file "etc/suspect-attachment.tmpl";
}
The template uses the ATTACHMENT_NAMES macro to list the dropped attachments:
======================================================================
A potentially unsafe attachment has been removed from this email
message. See http://<your_url_here> for further
information.
Removed attachment name(s):
%%ATTACHMENT_NAMES%%
======================================================================