Hi @Glenn Maxwell,
Welcome to the Microsoft Q&A platform!
Yes, the transport rule you mentioned should work to ensure that emails from the contoso.com
domain and its subdomains reach your users' Focused Inbox.
Here is a breakdown of the rule:
- Name: The rule is named "Bypass Focused Inbox for contoso.com domain".
- FromAddressMatchesPatterns: This specifies the email addresses the rule applies to, which include
@contoso.com
and any subdomain ofcontoso.com
(indicated by@.*\.contoso\.com$
). - SetHeaderName: This sets a specific header (
X-MS-Exchange-Organization-BypassFocusedInbox
). - SetHeaderValue: This sets the value of the header to
true
, which directs the emails to the Focused Inbox.
So, the command you provided:
New-TransportRule -Name "Bypass Focused Inbox for contoso.com domain" -FromAddressMatchesPatterns "@contoso\.com$|@.*\.contoso\.com$" -SetHeaderName "X-MS-Exchange-Organization-BypassFocusedInbox" -SetHeaderValue "true"
is set up correctly to achieve your goal.
Please feel free to contact me if you have any queries.
Best,
Jake Zhang