当前位置:   article > 正文

javamail写邮件/邮箱验证报错javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection_unrecognized ssl message, plaintext connection?; n

unrecognized ssl message, plaintext connection?; nested exception is javax.n

很久没更新博客了,今天记录一个问题。

我们开发了一个第三方邮箱的客户端,简单来说就是可以绑定邮箱,然后进行收发邮件。目前我还做不到像foxmail那样,用户填写了邮箱和密码,foxmail就可以自动识别出该邮箱收发邮件的服务器。我只能让用户去填写收发件服务器的相关配置。用户在绑定hotmail邮箱时,发现报了如下的错误(错误就不全部打印出来了)

javax.mail.MessagingException: Could not connect to SMTP host: smtp.office365.com, port: 587;
  nested exception is:
    javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2120)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:712)
    at javax.mail.Service.connect(Service.java:366)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:738)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
    at sun.security.ssl.InputRecord.handleUnknownRecord(InputRecord.java:710)

    ......................
    at sun.security.ssl.InputRecord.read(InputRecord.java:527)
    at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:973)
    at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1375)
    at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1403)
    at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1387)
    at com.sun.mail.util.SocketFetcher.configureSSLSocket(SocketFetcher.java:598)
    at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:372)
    at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:217)
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2084)
    ... 27 more

   主要问题在于“Unrecognized SSL message, plaintext connection?”,出现问题,我们看日志显示的,说是smtp服务器连接587端口时报错了。这样我们就可以定位是发件服务器配置填写的有问题。

  修改方法:将发件服务器的SSL选项不要勾选。即JAVA代码里不要给Properties 添加以下属性

   props.setProperty("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
   props.setProperty("mail.smtp.socketFactory.fallback", "false");

通过这个我可以得出一个结论,就是只有当勾选SSL的时候,代码里才添加以上代码。这应该是hotmail邮箱587端口不支持SSL协议吧。

为了适应各个邮箱,我们可以判断一下,当SSL勾选了,就添加以上代码;如果未勾选就不添加这个属性。

即:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/650943
推荐阅读
相关标签
  

闽ICP备14008679号