Question

I am using JavaMail 1.5.1 and i want to do a UID SEARCH. Is this supported or do i have to issue a low level IMAP command via ((IMAPFolder) folder).doCommand(...)?

Was it helpful?

OTHER TIPS

According with the docs, this is the way:

Folder f = store.getFolder("INBOX");
UIDFolder uf = (UIDFolder)f;
Message msg = uf.getMessageByUID(uid);

You can find more here: https://javamail.java.net/nonav/docs/api/javax/mail/UIDFolder.html

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top