Added star/unstar

Fixes #9
This commit is contained in:
M66B
2018-09-07 15:12:43 +00:00
parent 22fb136cc9
commit 7dd50cebab
16 changed files with 1070 additions and 4 deletions

View File

@@ -214,6 +214,10 @@ public class MessageHelper {
return imessage.isSet(Flags.Flag.SEEN);
}
boolean getFlagged() throws MessagingException {
return imessage.isSet(Flags.Flag.FLAGGED);
}
String getMessageID() throws MessagingException {
return imessage.getHeader("Message-ID", null);
}