You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
Port number from portlet-preference is ignored when opening mail session. This line from JavamailAccountDaoImpl is not setting port properly :
mailProperties.put("mail.port", config.getPort());
Looks like syntax has changed. Protocol should be included :
mailProperties.put(protocolPropertyPrefix + "port", config.getPort());
The text was updated successfully, but these errors were encountered: