Messages where Forced TLS policy rules are in place can fail for any number of reasons. The most typical reason has to do with certificates that are issued from Certificate Authorities that are not trusted by the FOPE service. In order to test connections to SMTP TLS MTA's you can make use of Win32 OpenSSL s_client functionality.
Downloads for Win32 OpenSSL can be found at http://www.slproweb.com/products/Win32OpenSSL.html The man page for s_client for openssl can be found at http://www.openssl.org/docs/apps/s_client.html
To test connectivity to a TLS enabled SMTP server run the following command
openssl s_client -connect mail.messaging.microsoft.com:25 -showcerts -starttls smtp
In the example shown we are establishing a connection to the FOPE inbound hostname on port 25 and establishing a TLS connection and showing the certificates back to the client that the server provides.
The return text will be in the following format:
From this you have most of the data you need to troubleshoot connections some common scenarios for failure are:
Maheshkumar S Tiwari edited Revision 11. Comment: Added tags