Exchange: Difference between revisions

From WikiWiki
Jump to navigation Jump to search
No edit summary   (change visibility)
No edit summary   (change visibility)
(One intermediate revision by the same user not shown)
Line 4: Line 4:




 
[[Exchange_Powershell|Exchange Powershell]]


= Queue behavior =
= Queue behavior =
Line 22: Line 22:
   Regards,
   Regards,
   Chris
   Chris
= Disable Internal IPs =
<syntaxhighlight lang="powershell">
Get-SendConnector "EdgeSync - Datacenter1 to Internet" | Remove-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights ms-Exch-Send-Headers-Routing
</syntaxhighlight>
http://practical365.com/exchange-server/remove-internal-exchange-server-names-ip-addresses-message-headers/

Revision as of 15:15, 10 March 2017


Exchange Powershell

Queue behavior

 Take a look at
 http://technet.microsoft.com/en-us/library/bb232161.aspx
 to see, what actions will cause re-routing.
 Configuration changes with re-routing:
 The connector is deleted. The queue is resubmitted.
 The connector is disabled. The queue is resubmitted.
 The connector is modified to remove the local server from the source server list. The queue is resubmitted.
 The connector is changed to a DNS connector. The queue is resubmitted.
 The smart host list for the connector is modified. The updated smart hosts list is automatically detected and used during the message delivery phase.
 Any DNS MX resolution failure occurs. The queue is retried until messages expire.
 The connector is disabled. The queue is resubmitted.
 The SMTP server is offline or the destination isn't running an SMTP server. The queue is retried until messages expire. 
 Regards,
 Chris


Disable Internal IPs

Get-SendConnector "EdgeSync - Datacenter1 to Internet" | Remove-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights ms-Exch-Send-Headers-Routing

http://practical365.com/exchange-server/remove-internal-exchange-server-names-ip-addresses-message-headers/