Store imapsStore = getStore(imapHost, imapPort, userName, userPass, getProperties(),debugMail);
        Folder givenFolder = imapsStore.getFolder(sourceFolder);
        givenFolder.open(Folder.READ_ONLY);

        /* Get the messages which is unread in the Inbox */
        Message messages[] = givenFolder.search(new FlagTerm(new Flags(Flags.Flag.RECENT), true));

        /* Use a suitable FetchProfile */
        FetchProfile fp = new FetchProfile();
//      fp.add(FetchProfile.Item.ENVELOPE);
//      fp.add(FetchProfile.Item.FLAGS);
        givenFolder.fetch(messages, fp);


这不会返回来自GMail的新邮件。 ?如何使其工作?它甚至起作用吗?
我知道也有SEEN标志,该标志用于将消息标记为READ / UNREAD,我正在寻找真正最新的消息,而不是未读消息。

最佳答案

Gmail doesn't support \Recent.

07-26 01:00