Mike,
During the migration of the mailboxes and with both Exchange Servers still installed it does not matter where port 25 is routed to. Exchange Server will deliver mail to a mailbox even it already lives on the new Exchange Server.
Before you uninstall the old Exchange Server you either need to remove the Sendconnector that is still bound to the old server or you can change the value SourceTransportServers from within EMS on the new Exchange Server, see below example.
[PS] C:\Windows\system32>Get-SendConnector | Ft Identity,Enabled,SourceTransportServers
Identity Enabled SourceTransportServers
-------- ------- ----------------------
Default Send connector True {EXCH2013}
[PS] C:\Windows\system32>Get-SendConnector | Set-SendConnector -SourceTransportServers EXCH2013,EXCH2016
[PS] C:\Windows\system32>Get-SendConnector | Ft Identity,Enabled,SourceTransportServers
Identity Enabled SourceTransportServers
-------- ------- ----------------------
Default Send connector True {EXCH2016, EXCH2013}
[PS] C:\Windows\system32>
answered 04/03/2022 06:55