端口 465 的 ssl false 不会引发服务器 smtp.gmail.com 的异常
我正在尝试使用 com.sun.mail ..... Mail api 连接到我的 gmail 帐户。 我正在使用邮件 api 版本 1.4.2 - mail_1.4.2.jar 现在我尝试连接以下详细信息:
username : [email protected]
password : some password (correct password)
host : smtp.gmail.com
port : 465
SSL : false
但是当我尝试执行 Transport.connect(host,port,username,password)
时,它只是挂起 - 没有错误返回,没有异常。请帮助我,如果 SSL 不存在,那么它应该提示我一些错误。
我能够像 true 一样连接 SSl,其余配置与上面相同。
I am trying to connect to my gmail account using com.sun.mail ..... Mail api.
I am using mail api version 1.4.2 - mail_1.4.2.jar
Now I am trying to connect with following details as :
username : [email protected]
password : some password (correct password)
host : smtp.gmail.com
port : 465
SSL : false
But when I try to execute Transport.connect(host,port,username,password)
, it just hangs -- no error return, no exception. Please help me out as if SSL is no then it should prompt me some error.
I am able to connect with SSl as true and rest of the configurations are same as above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SSMTP 通常位于端口 465 上。SMTP
通常位于端口 25 上。
请重试,但使用
端口:25
。 Google 可能会在 465 上强制执行 TLS/SSL。SSMTP is typically on port 465.
SMTP is typically on port 25.
Try again, but use
port : 25
. Google might enforce TLS/SSL on 465.