I'm trying to get all mail that I receive after some date. But folder.search( returns all of them. Even if I specify ComparisonTerm.EQ

Folder folder = getInboxFolder();
ReceivedDateTerm dateTerm = new ReceivedDateTerm(ComparisonTerm.EQ, new Date());
Message[] messages = folder.search(dateTerm);

How I should correct my code?

UPD It seems that it make job right with year/month/day comparation, but what about hours and minutes? I should care about them too.

link|improve this question

Duplicate of stackoverflow.com/questions/4650592/… – dkarp Mar 15 '11 at 16:29
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.