ExchangeLegacyDN
Often I’m confronted with problems of mail submissions in freshly migrated Exchange environments.
In migrated environments it could happen, that the old ExchangeLegacyDN is missing and users can’t answer on old mails. This might happen, when you migrate users between Exchange organizations.
To mitigate this issue, you can add the old ExchangeLegacyDN as X500 proxy address. This fixes the issue and the user’s mailbox is addressable via the old LegacyDN.
You can do this by hand, by ADModify.NET or simple use PowerShell to fix this.
Get-Mailbox -recipienttype ‘usermailbox’ | foreach {$_emailaddress += [microsoft.exchange.data.custom.proxyaddress](“X500:/O=ORG/OU=US/CN=$_.ALIAS”)$_set-mailbox}
Thanks to Frank for this helpful PowerShell cmdlet.
Cheers,
Chris
Filed under: Exchange 2010, Powershell | 2 Comments
Tags: 2003, 2010, 550 5.1.1 RESOLVER.ADR.ExRecipNotFound; not found, add, coexistence, delivery, DN, error, exchange, ExchangeLegacyDN, failed, IMCEAEX, legacy, legacydn, migration, missing, powershell, RESOLVER.ADR.ExRecipNotFound, x500
Hi Christopher, thanks for this hint!
Greets, Dennis
More information related to this issue:
http://www.simple-talk.com/sysadmin/exchange/exchange-e-mail-addresses-and-the-outlook-address-cache/
Cu, Dennis