Created
March 2, 2020 19:05
-
-
Save vepetkov/ecbe8a7dd816e97d9263dc4055e63abe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Test SMTP with STARTTLS | |
openssl s_client -showcerts -connect smtp.office365.com:587 -servername smtp.office365.com -starttls smtp | |
# Test IMAP with SSL/TLS | |
openssl s_client -showcerts -connect outlook.office365.com:993 -servername outlook.office365.com | |
# Test POP3 with SSL/TLS | |
openssl s_client -showcerts -connect outlook.office365.com:995 -servername outlook.office365.com | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment