Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CertPathValidatorException #13

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,15 @@ public class GmailSender extends javax.mail.Authenticator {
public GmailSender(String user, String password, boolean useDefaultSession) {
this.user = user;
this.password = password;


MailSSLSocketFactory socketFactory = null;
try {
socketFactory = new MailSSLSocketFactory();
socketFactory.setTrustAllHosts(true);
} catch (GeneralSecurityException e) {
e.printStackTrace();
}

Properties props = new Properties();
props.setProperty("mail.transport.protocol", "smtp");
props.setProperty("mail.host", GMAIL_HOST);
Expand All @@ -48,6 +56,8 @@ public GmailSender(String user, String password, boolean useDefaultSession) {
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.socketFactory.fallback", "false");
props.setProperty("mail.smtp.quitwait", "false");
props.put("mail.smtps.socketFactory", socketFactory);
props.put("mail.smtp.ssl.trust", "smtp.gmail.com");

session = useDefaultSession ? Session.getDefaultInstance(props, this) : Session.getInstance(props, this);
_multipart = new MimeMultipart();
Expand Down Expand Up @@ -146,4 +156,4 @@ public OutputStream getOutputStream() throws IOException {
throw new IOException("Not Supported");
}
}
}
}