TLS SMTP Mail Java抛出SSLHandShakeException

时间:2017-07-19 13:22:29

标签: java ssl

我尝试使用SMTP发送邮件,该邮件设置为默认的smtp服务器,具有25,587个端口和TLS。 MS Exchange 2010.所有身份验证数据都是正确的,因为我可以通过邮件的Web界面登录。下面的代码可以与gmail smtp服务器一起使用,但是当我使用自己的smtp服务器时,它会引发我对证书路径的错误:

  

javax.net.ssl.SSLHandshakeException:   sun.security.validator.ValidatorException:PKIX路径构建失败:   sun.security.provider.certpath.SunCertPathBuilderException:无法   找到所请求目标的有效证书路径

public static void SendMailTLS(String to, String subject, String body) throws Exception{

    try {
                java.util.Properties props =  new java.util.Properties();
                props.put("mail.smtp.host", "sample");
                props.put("mail.smtp.port", "587");
                props.put("mail.smtp.starttls.enable", "true");
                props.put("mail.smtp.auth", "true");
                props.put("mail.smtp.connectiontimeout", "10000");    
                final String EmailUser = "sample";
                final String EmailPassword = "sample";    
                Session session = Session.getInstance(props, new javax.mail.Authenticator() {
                          protected PasswordAuthentication getPasswordAuthentication() {
                            return new PasswordAuthentication(
                                EmailUser,EmailPassword);
                             }
                       });    session.setDebug(true);    
                InternetAddress fromAddress = new InternetAddress("sample",
                                        "sample");
                InternetAddress toAddress = new InternetAddress("sample",
                                        "sample");
                Message msg = new MimeMessage(session);
                msg.setFrom(fromAddress);
                msg.addRecipient(Message.RecipientType.TO,toAddress);
                msg.setSubject(subject);
                msg.setText(body);    
                Transport transport = session.getTransport("smtp");
                transport.connect();
                transport.sendMessage(msg, msg.getAllRecipients());
                } catch (MessagingException e) {e.printStackTrace();}
    }

我做错了吗?

1 个答案:

答案 0 :(得分:0)

此错误消息表示您的服务器名为" sample" (MS Exchange 2010服务器)正在使用您的Java运行时不信任的证书。您可能正在使用自签名证书。因此,您需要使用keytool将此证书导入Java Runtime证书库。