I recently upgraded to new JavaMail 1.4 and i can't connect to smtp.gmail.com over ssl.

This line works before javamail upgrade:

props.put("mail.smtp.ssl.protocols", "ssl");

Now it need to look like this:

props.put("mail.smtp.ssl.protocols", "sslv3");

or

props.put("mail.smtp.ssl.protocols", "tlsv1"); 

This doesn't work:

props.put("mail.smtp.ssl.protocols", "tls");

My question is:

  1. Why previous version could work?
  2. How to get SSL version from server so i could switch to it properly?
link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Just leave it out. Java will figure it out.

Those protocol names should be in uppercase as far as I know,

link|improve this answer
This work as you say. But i newer version i get java.lang.IllegalArgumentException: SSL – userbb Apr 15 '11 at 9:11
Sorry i read you wrong. I thought to leave "SSL" – userbb Apr 15 '11 at 13:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.