Added realm

This commit is contained in:
M66B
2019-01-10 18:24:20 +00:00
parent 821178754d
commit 373251f535
16 changed files with 1426 additions and 24 deletions

View File

@@ -309,7 +309,7 @@ public class FragmentSetup extends FragmentEx {
folders.add(inbox);
{
Properties props = MessageHelper.getSessionProperties(auth_type, false);
Properties props = MessageHelper.getSessionProperties(auth_type, null, false);
Session isession = Session.getInstance(props, null);
isession.setDebug(true);
IMAPStore istore = null;
@@ -364,7 +364,7 @@ public class FragmentSetup extends FragmentEx {
}
{
Properties props = MessageHelper.getSessionProperties(auth_type, false);
Properties props = MessageHelper.getSessionProperties(auth_type, null, false);
Session isession = Session.getInstance(props, null);
isession.setDebug(true);
Transport itransport = isession.getTransport(provider.smtp_starttls ? "smtp" : "smtps");