Score:0

Tag External Emails from NEW external addresses

es flag

We work with a giant company that prepends an email tag to every externally originating (to them) email that goes something like:

"Warning, this email originated outside your organization - don't click any links unless you recognize the sender"

I don't want to implement tagging exactly like this because 90% of all our mail flow is between us and this company. I'm worried the tagging would just become noise that gets ignored. (not to mention clutters email chains)

What I would like to set up instead would be tagging that only applies when an external account emails our organization for the first time For example, the tag would look like:

"Warning - you've never received an email from [email protected] before - Use caution if you were not expecting this email"

which I believe would be much more effective.

Does anyone know how to do this? Our environment:

On prem Exhchange 2013 / Proofpoint Spam Filtering

Score:1
es flag

@Ivan_Wang - I got it working into a self-maintaining sender list using your suggestions. Here are the steps I took:

  1. Schedule an Exchange Shell script to export a CSV List from delivered emails
  2. Schedule another script to read the CSV and log the addresses from step #1 into a database (so I can keep track of what has been added). This script then compares with my database to identify only NEW senders. It takes the NEW senders and puts them into a CSV file, formatted for import.
  3. Schedule and Exchange Shell script to import the CSV file created in #2 using the New-Mailcontact command.
  4. A fourth script to hide these new mail contacts from address books.(to modify attribute msExchHideFromAddressLists

And then an Exchange rule that checks to see if the sender is NOT member of the group that I'm populating. The limitation of this method is that it treats senders as "new" until the scripts run again. I am running them daily and so in the rule disclaimer, I said something like "this is a new sender... etc... This message will stop appearing for this sender after 1 day."

I spent all day this... I don't think the catch was worth the chase. But it is working.

Score:0
us flag

Hope my thinking below is helpful to you:

Because no exceptions in transport rule can avoid adding disclaimers to a same external sender, I think you can use message tracking log to search external emails which are sent to your organization, and add these emails' senders to mail contact list, the following commands which can realize this function are for your reference:

$senders = Get-MessageTrackingLog -EventId DELIVER | where{$_.Sender -notlike "*@yourdomain.com*"}
foreach($sender in $senders){
New-MailContact -Name $sender.Sender -ExternalEmailAddress $sender.Sender
Start-Sleep -Seconds 5
Add-DistributionGroupMember -Identity <Specific group> -Member $sender.Sender
}

After that, you can add these external contacts to a specific group, then add an exception to your existing rule which is used to add a custom disclaimer: If the sender is a member of

enter image description here

Score:0
cn flag

This is not supported with Exchange 2013 or Proofpoint. The issue is you would need one of those servers to keep track of every email address that ever sent email to every internal email account so that it would know if a given sender had sent an email to a specific internal account for the first time. That isn’t realistic and I don’t know of any product or service that can do that.

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.