
Modifying the External Postmaster on Hub Transport Servers and Edge Transport Servers
For most Exchange organizations, the default value of the external postmaster address is correct. However, there are situations where you may have to modify the external postmaster address on a Transport server.
Note: |
|---|
|
If you specify a custom value for the external postmaster address, that value is not replicated to any Edge Transport servers that are subscribed to the Exchange organization. If you specify a custom value for the external postmaster address, you must manually configure the external postmaster address on any Edge Transport servers.
|
Parameters that are configured by using the Set-TransportServer cmdlet only apply to the Hub Transport server or Edge Transport server on which the cmdlet is run.
To use the Exchange Management Shell to modify the external postmaster address on a single Hub Transport server or Edge Transport server
-
Run the following command:
|
Set-TransportServer <TransportServerName> -ExternalPostmasterAddress <ExternalPostmasterSMTPAddress> |
For example, to set the external postmaster address to postmaster@contoso.com on the Transport server named Hub01, run the following command:
|
Set-TransportServer Hub01 -ExternalPostmasterAddress postmaster@contoso.com |
You can use pipelining in the Exchange Management Shell to modify the external postmaster address on all Hub Transport servers in the Exchange organization at the same time.
To use the Exchange Management Shell to modify the external postmaster address on all Hub Transport servers in the Exchange organization
-
Run the following command:
|
Get-TransportServer | Set-TransportServer -ExternalPostmasterAddress <ExternalPostmasterSMTPAddress> |
For example, to set the external postmaster address to postmaster@contoso.com on all Hub Transport servers in the Exchange organization, run the following command:
|
Get-TransportServer | Set-TransportServer -ExternalPostmasterAddress postmaster@contoso.com |
Note: |
|---|
|
You can't use pipelining to modify the external postmaster address on more than one Edge Transport server at the same time. You must modify the external postmaster address on each Edge Transport server separately.
|