Added support for deleted flag

This commit is contained in:
M66B
2021-02-11 09:51:48 +01:00
parent 50686ce0c0
commit 54d806d3ed
9 changed files with 2449 additions and 23 deletions

View File

@@ -869,6 +869,10 @@ public class MessageHelper {
return imessage.isSet(Flags.Flag.FLAGGED);
}
boolean getDeleted() throws MessagingException {
return imessage.isSet(Flags.Flag.DELETED);
}
String getFlags() throws MessagingException {
if (!BuildConfig.DEBUG)
return null;