vote up 0 vote down star

Hi, I am facing a problem regarding getting the drafts and sent mail folder programmaticaly in Java. Although I am able to get the inbox using pop3 and able to send mail via smtp, I am not able to get it done by pop3. Thanks in advance for your reply.

flag

3 Answers

vote up 0 vote down

POP3 does not supports the notion of differents folder. If the mail server supports IMAP then you'd be able to access all folders. The IMAP support in JavaMail is decent and easy to use.

link|flag
vote up 4 vote down

The POP3 Protocol doesn't support folders at all, so the only one you can get is the INBOX.

All the other folders are stored locally within each POP3 client, so if you are writing one, you are free to do that in whatever way you like.

There might be POP3 servers that allow use of folders through extensions, but in that case they are not following the standard protocol and you will most likely implement something own or try to find some package specific for that mailserver.

If you want to use server-side folders in a standardized way, I suggest you look at IMAP. Most mail-providers do support both POP3 and IMAP and it supports storing folders on the server (including Drafts, Sent mail, and other customized folders).

link|flag
okay thanks alot for the answer i will try to do the same, nd will feel greatful if can solve any of ur query :) –  amit chadha Mar 5 at 12:12
vote up 0 vote down

When I look at this I would say that the standard POP3 protocol implementation provided with JavaMail does not support this.

link|flag
ya thats fine but can u give me any other way to access the drafts,sent item folder? –  amit chadha Mar 5 at 10:15
Neither the JavaMail implementation nor the POP3 protocol does not support folders – furtelwart Mar 5 at 11:17
so can we get the mails of these folders by any other protocol? –  amit chadha Mar 5 at 11:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.