在一个应用程序中,我使用 java 实现了邮件发送逻辑。我用smtp.gmail.com
了587 port
一个有效的 gmail id 和密码。在开发环境中一切正常。但是在生产环境中,我需要使用不同的邮件服务器,并在该域上使用有效的电子邮件 ID 和密码smtp.xyz.in
。port 25
当我继续使用以下代码启用 SSL 时:
我收到一个错误
Could not convert socket to TLS
SunCertPathBuilderException: Unable To Find Valid Certification Path To Requested Target
==================================================== =====
final ResourceBundle rsbd=ResourceBundle.getBundle("main/ResourceBundle/Dyna");
// -- Attaching to default Session, or we could start a new one
props.put("mail.smtp.host", smtpServer);
props.put("mail.smtp.auth", "true");
props.put("mail.debug", "true");
props.put("mail.smtp.port", port);
props.put("mail.smtp.starttls.enable","true");
props.put("mail.smtp.EnableSSL.enable","true");
Session session =Session.getInstance(props, new Authenticator() {protected PasswordAuthentication getPasswordAuthentication() {return new PasswordAuthentication(admin_mail, admin_password);}});
// -- Create a new message --
Message msg = new MimeMessage(session);
// -- Set the FROM and TO fields --
msg.setFrom(new InternetAddress(from));
msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(email, false));
msg.setSubject(subject);
msg.setText(emailContent);
// -- Set some other header information --
msg.setHeader("X-Mailer", "LOTONtechEmail");
msg.setSentDate(new Date());
// -- Send the message --
Transport.send(msg);
当我删除 EnableSSL 并尝试添加以下代码时:
(getting javax.mail.AuthenticationFailedException:535 5.7.3 Authentication unsuccessful)
==================================================== =========================
props.put("mail.smtp.socketFactory.port","25");
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.socketFactory.fallback", "true");
MailSSLSocketFactory sf=new MailSSLSocketFactory();
sf.setTrustAllHosts(true);
props.put("mail.smtp.ssl.socketFactory", sf);
通过在过去 3 天中进行足够多的谷歌搜索,我了解到我需要配置受信任的证书,如这里给出的。
但我想在不加密且不抢劫以启用 SSL 的情况下继续。有没有办法在不启用 SSL 的情况下通过我们自己的域通过 java 程序发送电子邮件。任何帮助将不胜感激。