Where to find all available Java mail properties?

Solution 1:

In the api is a reference to the properties for the specific sun protocol providers. Not sure if you were looking for these:

  • https://javaee.github.io/javamail/docs/api/com/sun/mail/imap/package-summary.html
  • https://javaee.github.io/javamail/docs/api/com/sun/mail/pop3/package-summary.html
  • https://javaee.github.io/javamail/docs/api/com/sun/mail/smtp/package-summary.html

These are also set on the session object but you use them on your own risk since in other mail implementations they are maybe not supported or they change in the future.