Force TLS between Exchange On Premise and Useit Fax Service (useitfax.com)
Problem:
By default, fax-to-email and email-to-fax messages between Exchange On Premise and Useit Fax Service are sent and received in clear. In order to encrypt these messages, TLS must be enabled and forced between the Exchange On Premise server and Useit Fax Service.
The Solution:
From Your Exchange On Premise Server:
- Open Exchange Management Console.
- Expand Organization Configuration > Hub Transport and click on the Send Connectors tab.
- Create a new Send Connector, using any name you prefer.
- Click Add > SMTP Address Space.
- In the Address Space field, type useitfax.com.
- Enable the option to Use domain name system (DNS) “MX” records to route mail automatically.
- Select the source Exchange Server.
- Verify the details of the new Send Connector. If everything looks correct, click New to finish creating the connector.
The new Send Connector uses Opportunistic TLS by default. To force TLS on the new connector, you must run the following PowerShell commandlet.
- Launch Exchange Management Shell.
- Run the following cmdlet to view the current Send Connector properties. This example assumes the name of the send connector is Useitfax.com.
Get-SendConnector “Useitfax.com” |fl
You can see that the SendConnector is not requiring TLS.
- Run the following cmdlet to require TLS. This example assumes the name of the send connector is Useitfax.com.
Set-SendConnector “Useitfax.com” -RequireTls $true -TlsAuthLevel DomainValidation -TlsDomain *.useitfax.com
- Run again the following cmdlet to view the current Send Connector properties to confirm that TLS is required. This example assumes the name of the send connector is Useitfax.com.
Get-SendConnector “Useitfax.com” |fl
Now all mail send from your Exchange On Premise Server to *.useitfax.com will be protected with TLS.
Additional Note:
If viewing the properties of the SendConnector, on the Network tab, you will see that the value of Enable Domain Security (Mutual Auth TLS) is not selected. This is the CORRECT configuration.