hi everyone
I'm trying to make a small application which will retrieves all mails in the inbox...
I tried to get the inbox folder and then get all messages in the folder but Folder.getMessages always returns null...
I also tried reading the subfolders but found nada...
any help?
Code:
//Retrieves the inbox folder
Session session = Session.getDefaultInstance();
Store store = session.getStore();
Folder[] folders = store.list(Folder.INBOX);
Folder inbox = folders[0];
String subject;
Message[] messages = inbox.getMessages();
if(messages!=null && messages.length>0)
{
do some things
}