Fix a Hybrid Mailbox with an Incorrect Remote Routing Address
Scenario: a mailbox in a hybrid Exchange environment can send internally but has problems receiving or routing external mail after recipient attributes were changed.
First, verify the remote mailbox instead of changing attributes blindly:
Get-RemoteMailbox -Identity [email protected] |
Format-List PrimarySmtpAddress,RemoteRoutingAddress,EmailAddressesThe RemoteRoutingAddress normally points to the service routing domain, for example [email protected]. Microsoft notes that you normally should not change this value when Exchange configured it correctly.
If you have confirmed that the value is wrong, correct it in the on-premises Exchange Management Shell:
Set-RemoteMailbox -Identity [email protected] `
-RemoteRoutingAddress [email protected]Allow directory synchronisation to complete, then re-check mail flow. Also verify accepted domains, proxy addresses and connectors if the problem remains.
Safety note: make the change only after comparing the affected recipient with a known-good hybrid mailbox in the same organisation.