Security Fridays Quick Tip - Enable 'External' email tagging in Outlook


Userlevel 7
Badge +7
  • Veeam Legend
  • 716 comments

If you haven’t already done so, you can enable ‘External’ tagging in Outlook for your Microsoft Office 365 tenant. This allows any external emails to be tagged which can be helpful if someone tries to impersonate emails or for attempted Phishing emails. 

Resource: Set-ExternalInOutlook (ExchangePowerShell) | Microsoft Learn

Quite simple to enable:

  • Connect to Exchange Online using Powershell
  • Check status
    • Get-ExternalInOutlook
  • If set to false, to enable
    • Set-ExternalInOutlook -Enabled $true
  • To exclude a domain from being tagged:
    • Set-ExternalInOutlook -AllowList “example.com”
  • To exclude an email from being tagged
    • Set-ExternalInOutlook -AllowList “admin@example.com”

 


4 comments

Userlevel 7
Badge +5

Many thanks @dips for this very useful tips !

Userlevel 7
Badge +20

Gotta love doing this stuff in PowerShell.  Thanks for sharing Dips.

Userlevel 7
Badge +7

Welcome @MarcoLuvisi @Chris.Childerhose 

Hope it comes in handy

Userlevel 7
Badge +6

Well that beats the heck of a mail flow rule that appends or prepends external emails IMO.  Thanks for this!

Comment