Skip to main content

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

  • July 28, 2023
  • 4 comments
  • 4708 views

dips
Forum|alt.badge.img+7
  • On the path to Greatness

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

MarcoLuvisi
Forum|alt.badge.img+6
  • VUG Leader
  • July 28, 2023

Many thanks @dips for this very useful tips !


Chris.Childerhose
Forum|alt.badge.img+21

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


dips
Forum|alt.badge.img+7
  • Author
  • On the path to Greatness
  • July 28, 2023

Welcome @MarcoLuvisi @Chris.Childerhose 

Hope it comes in handy


dloseke
Forum|alt.badge.img+8
  • Veeam Vanguard
  • July 31, 2023

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