2577
Views
15
Helpful
3
Replies
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2021 11:02 AM
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();
}
Solved! Go to Solution.
Labels:
- Labels:
-
Email Security
1 Accepted Solution
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2021 12:06 PM
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.
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.
3 Replies 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2021 11:38 AM
That is the display name header.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2021 12:06 PM
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.
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.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2021 12:11 PM
Many thanks Ken and Chris.
