Skip to main content

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”

 

Many thanks @dips for this very useful tips !


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


Welcome @MarcoLuvisi @Chris.Childerhose 

Hope it comes in handy


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


Comment