I am writing/learning to fetch email using java from an IMAP folder using javax.mail package. I was successfully able to retrieve the last n messages in a Folder, however I am looking to build an example to retrieve messages since a specified date. Any examples?
|
|
You could also use the SearchTerm classes in the java mail package.
Some combination of the above should prove to be a better way to get dates within a certain range. |
||||
|
|
|
||||
|
|
|
Instead of fetching all messages you should try taking advantage of server side search. This works by using the search method of javax.mail.Folder. You will probably have to write your own SearchTerm based on a criteria on Message.getReceivedDate(). If server side search does not work, you could try using a fetch profile, i.e. instead of inbox.getMessages() use inbox.fetch(Message[] msgs, FetchProfile fp). The javadoc for fetch says: Clients use this method to indicate that the specified items are needed en-masse for the given message range. Implementations are expected to retrieve these items for the given message range in a efficient manner. Note that this method is just a hint to the implementation to prefetch the desired items. |
|||
|
|
|
Here is what I came up with. This works for me, but probably not the best way to go about it. Any suggestions to improve this?
|
|||
|
|