cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1907
Views
15
Helpful
3
Replies

Message filter syntax question (header-dictionary-match)

Vinay babu
Level 1
Level 1

I would like to know does the below message filter looks for Display email address or Envelope email address ? 

I have added few email addresses in the Whitelist dictionary.

 

Whitelist: if (header-dictionary-match("Whitelist","From", 1))
{
skip-bulkcheck();
}

1 Accepted Solution

Accepted Solutions

charella
Cisco Employee
Cisco Employee
Vinay babu

The from indicates the friendly “From” or outlook client from value.

Whitelist: if (header-dictionary-match("Whitelist","From", 1))

The envelope sender|responsible sender|mail-from, as determined within the message tracking would look like this: (mail-from-dictionary-match("skipmacro", 1))

Thank you,
Chris A.

View solution in original post

3 Replies 3

That is the display name header.

charella
Cisco Employee
Cisco Employee
Vinay babu

The from indicates the friendly “From” or outlook client from value.

Whitelist: if (header-dictionary-match("Whitelist","From", 1))

The envelope sender|responsible sender|mail-from, as determined within the message tracking would look like this: (mail-from-dictionary-match("skipmacro", 1))

Thank you,
Chris A.

Vinay babu
Level 1
Level 1

Many thanks Ken and Chris.