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
I am trying to access a shared folder (mailbox) bu i can not connect to it.
Someone can access the shared folder by using Username: [email protected]/sharedfolder and his password.
e.g. [email protected]/hollad and the password of [email protected].
I found in a personal project that if you use two extra properties in javax imap , the problem is solved.
I am trying to access a shared folder (mailbox) bu i can not connect to it.
Someone can access the shared folder by using Username: [email protected]/sharedfolder and his password.
e.g. [email protected]/hollad and the password of [email protected].
I found in a personal project that if you use two extra properties in javax imap , the problem is solved.
`private Properties set_Email_Properties() {
Properties emailProperties = null;
try {
emailProperties = new Properties();
emailProperties.setProperty("mail.store.protocol", "imaps");
emailProperties.setProperty("mail.imaps.host", "outlook.office365.com");
emailProperties.setProperty("mail.imaps.port", "993");
emailProperties.setProperty("mail.imaps.connectiontimeout", "5000");
emailProperties.setProperty("mail.imaps.timeout", "5000");
emailProperties.setProperty("mail.imap.socketFactory.class",
"javax.net.ssl.SSLSocketFactory");
emailProperties.setProperty("mail.imap.socketFactory.fallback", "false");
I tried to add the extra lines to addon (from github) but i do not know how to build the addon again.
The text was updated successfully, but these errors were encountered: