Where to find all available Java mail properties?

JavaJakarta EeJakarta Mail

Java Problem Overview


Where do I find a list of all available Java mail properties that I can pass to the Session object? I am only able to find basic properties in the API. Browsing blogs to find some more properties isn't good. There must be some list somewhere?

Java Solutions


Solution 1 - Java

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

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLuckyLukeView Question on Stackoverflow
Solution 1 - JavamszalbachView Answer on Stackoverflow