mirror of https://github.com/M66B/FairEmail.git
45 lines
1.8 KiB
Diff
45 lines
1.8 KiB
Diff
diff --git a/app/src/main/java/com/sun/mail/imap/IMAPStore.java b/app/src/main/java/com/sun/mail/imap/IMAPStore.java
|
|
index 866f17737..929e82d33 100644
|
|
--- a/app/src/main/java/com/sun/mail/imap/IMAPStore.java
|
|
+++ b/app/src/main/java/com/sun/mail/imap/IMAPStore.java
|
|
@@ -1014,6 +1014,8 @@ public class IMAPStore extends Store
|
|
p.disconnect();
|
|
} catch (Exception ex2) { }
|
|
p = null;
|
|
+ eu.faircode.email.Log.e(new MessagingException("IMAP connection failure", ex1));
|
|
+ throw new MessagingException("connection failure", ex1);
|
|
}
|
|
|
|
if (p == null)
|
|
@@ -1529,6 +1531,30 @@ public class IMAPStore extends Store
|
|
}
|
|
}
|
|
|
|
+ public synchronized String getCapability(String capability)
|
|
+ throws MessagingException {
|
|
+ IMAPProtocol p = null;
|
|
+ try {
|
|
+ p = getStoreProtocol();
|
|
+ Map<String, String> caps = p.getCapabilities();
|
|
+ if (caps != null)
|
|
+ for (String cap : caps.values()) {
|
|
+ int eq = (cap == null ? -1 : cap.indexOf('='));
|
|
+ if (eq > 0) {
|
|
+ String key = cap.substring(0, eq);
|
|
+ String value = cap.substring(eq + 1);
|
|
+ if (capability.equals(key))
|
|
+ return value;
|
|
+ }
|
|
+ }
|
|
+ return null;
|
|
+ } catch (ProtocolException pex) {
|
|
+ throw new MessagingException(pex.getMessage(), pex);
|
|
+ } finally {
|
|
+ releaseStoreProtocol(p);
|
|
+ }
|
|
+ }
|
|
+
|
|
/**
|
|
* Set the user name to be used with the PROXYAUTH command.
|
|
* The PROXYAUTH user name can also be set using the
|