We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Per #109 the error seen was:
[07-09-2023 18:46:26][AP-Web][WARN] Details: Got bad greeting from SMTP host: localhost, port: 465, response: [EOF] [07-09-2023 18:46:26][AP-Web][WARN] Type: jakarta.mail.MessagingException [07-09-2023 18:46:26][AP-Web][WARN] Stacktrace: [07-09-2023 18:46:26][AP-Web][WARN] org.eclipse.angus.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:2231) [07-09-2023 18:46:26][AP-Web][WARN] org.eclipse.angus.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:729) [07-09-2023 18:46:26][AP-Web][WARN] jakarta.mail.Service.connect(Service.java:345) [07-09-2023 18:46:26][AP-Web][WARN] jakarta.mail.Service.connect(Service.java:225) [07-09-2023 18:46:26][AP-Web][WARN] jakarta.mail.Service.connect(Service.java:246) [07-09-2023 18:46:26][AP-Web][WARN] jakarta.mail.Transport.send0(Transport.java:230) [07-09-2023 18:46:26][AP-Web][WARN] jakarta.mail.Transport.send(Transport.java:152)
Setting mail.smtp.ssl.enable=true fixed the issue.
mail.smtp.ssl.enable=true
Got bad greeting from SMTP host: <host>, port: <port>, response: [EOF]
mail.smtp.starttls.enable=true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Per #109 the error seen was:
Setting
mail.smtp.ssl.enable=true
fixed the issue.Got bad greeting from SMTP host: <host>, port: <port>, response: [EOF]
mail.smtp.ssl.enable=true
and removemail.smtp.starttls.enable=true
The text was updated successfully, but these errors were encountered: