Added IMAP compression (default enabled)

This commit is contained in:
M66B
2018-08-28 14:52:03 +00:00
parent bef7645705
commit e3b4674378
44 changed files with 81 additions and 9 deletions

View File

@@ -273,7 +273,7 @@ public class FragmentIdentity extends FragmentEx {
// Check SMTP server
if (synchronize) {
Properties props = MessageHelper.getSessionProperties(auth_type);
Properties props = MessageHelper.getSessionProperties(context, auth_type);
Session isession = Session.getInstance(props, null);
isession.setDebug(true);
Transport itransport = isession.getTransport(starttls ? "smtp" : "smtps");