cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
131
Views
1
Helpful
2
Replies

ESA Does Not Show Email Attachment Information in the Message Tracking

EUR
Level 1
Level 1

Hi, we are doing some tests to send outgoing emails with a Cisco ESA device, we have a problem with message tracking, attachments are not detected even if they are present in the email. Submissions were done either via batch or with Mozilla Thunderbird.
Is there a particular reason for this behavior?

1 Accepted Solution

Accepted Solutions

If you want everything logged, vs things it might ignore (eg files none of the security engines will look at), add the following message filter in the cli.


File_Monitor:
if (attachment-filename == "^.+$")
{
log-entry("MF: $filenames $filetypes")



That will add a log entry to all mail, inbound and outbound.


View solution in original post

2 Replies 2

If you want everything logged, vs things it might ignore (eg files none of the security engines will look at), add the following message filter in the cli.


File_Monitor:
if (attachment-filename == "^.+$")
{
log-entry("MF: $filenames $filetypes")



That will add a log entry to all mail, inbound and outbound.


It works thanks!!!