1

我正在尝试使用端口 25 上的自签名证书连接到 SMTP 服务器(James 3),并打开 STARTTLS。

我已启用 JavaMail 属性以信任所有主机,但我仍然收到 PKIX 证书路径验证错误。我怎样才能摆脱错误?

请参阅下面的代码。

   //Trust all hosts
    MailSSLSocketFactory sf = new MailSSLSocketFactory();
        sf.setTrustAllHosts(true);
    Properties props = new Properties();
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.starttls.enable","true");
    props.put("mail.smtp.starttls.required", "true");
    props.put("mail.smtp.auth.mechanisms", "PLAIN");
    props.put("mail.smtp.socketFactory.fallback", "false");
    props.put("mail.smtp.ssl.socketFactory", sf);

    Session session = Session.getInstance(props, null);

        Message message = new MimeMessage(session);
        message.setFrom(new InternetAddress(ti.sutUserName));
        message.setRecipients(Message.RecipientType.TO,
                InternetAddress.parse(ti.sutEmailAddress));


        BodyPart messageBodyPart = new MimeBodyPart();

        messageBodyPart.setText("This is message body");

        Multipart multipart = new MimeMultipart();



        log.info("Sending Message");

        Transport transport = session.getTransport("smtp");
        transport.connect(ti.sutSmtpAddress, ti.sutUserName, ti.sutPassword);
        transport.sendMessage(message, message.getAllRecipients());
        transport.close();`
4

1 回答 1

1

我在默认情况下具有 Javamail 1.5.3 的 Spring Boot 容器中使用 Javamail API (Compact) 1.4。在我将 jar 更改为 1.5.3 后,程序开始正常工作。

请参阅:Spring Boot 1.2.5.RELEASE - 通过 Gmail SMTP 发送电子邮件

谢谢你的帮助。

于 2016-02-10T02:32:40.267 回答