Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
i have try this val f = store.defaultFolder.list("*") but just get : INBOX, Sent Messages, Drafts, Deleted Messages, Junk,
val f = store.defaultFolder.list("*")
how to access QQMail or other Mail "Starred" folder
"starred" is not a folder is a flag , and i get it by this line code message.flags.systemFlags.contains(Flags.Flag.FLAGGED) if get true means this message belong to "starred folder"
message.flags.systemFlags.contains(Flags.Flag.FLAGGED)