Is there a way I can tell whether an SMTP server is expecting a client to connect using “implicit” SSL versus “explicit” SSL?

后端 未结 1 939
别那么骄傲
别那么骄傲 2021-02-03 16:07

SSL can either be \"explicit\" or \"implicit\" as explained by this link:

http://help.globalscape.com/help/secureserver2/Explicit_versus_implicit_SS.htm

System.N

相关标签:
1条回答
  • 2021-02-03 16:43

    Ordinarily this is governed by convention. SMTP running on port 25 (the normal case) uses explicit SSL. SMTPS running on port 465 uses implicit SSL. Mail submission running on port 587 uses explicit SSL.

    To tell for sure, telnet to the port, as in "telnet mail.example.com 25". If you see a plain text banner where the server identifies itself, then you are dealing with explicit SSL. If you connect successfully and see nothing, then you are dealing with implicit SSL.

    0 讨论(0)
提交回复
热议问题