Login  Register

Re: Bursting ssl R12.2.5

Posted by ErmanArslansOracleBlog on Oct 20, 2021; 5:15pm
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/Bursting-ssl-R12-2-5-tp10355p10358.html

Yes. port 465 is for SMTPS
We can also see the following lines in the log;

DEBUG SMTP: Found extension "STARTTLS", arg ""
STARTTLS
220 Go ahead with TLS

The debug line "DEBUG SMTP: trying to connect to host "relay.******.in", port 465, isSSL false" seems misleading. This is a TLS connection. So I think there in the java code we have props.put("mail.smtp.starttls.enable", "true")..
So, we don't have  props.put("mail.smtps.ssl.enable","true"); ... and I think this is normal, I mean "isSSL false" that we see in the log should not be a problem -> because we are making a TLS connection here.

Well, in my opinion, it is using TLS (SSL) at the end of the day :)