Bilal Bhatti wrote:

Thanks, Rajith.

Is the goal to create a full IMAP client with offline capabilities. If so
what local message format is going to be used? Is this client going to be
plugged in as a portlet in the console?

I have the code for an online imap client. It has basic functionality to
grab folders and pull down messages. What are the feature requirements for
this thing?
The requirements here are to add POP3 and IMAP support to the geronimo implementation of the javamail apis. The end target is an implementation that functions exactly the same as the Sun implementation of the same. Everything implemented here needs to be under the umbrella of the javamail apis. So, for example, the local message format will be an implementation of the javamail message class.

Currently, all that is implemented is an outbound smtp transport. This transport takes as input a javamail Message instance and send it to an smtp server. Missing right now is the capability for inbound messages (i.e., POP3 or IMAP). These need to be implementations of the javamail AbstractStore and AbstractFolder class. Currently, we have some stub implementations of these classes in the sandbox/mail directory, but they are currently just empty autogenerated classes. Somebody needs to fill in the blanks.

Rick

Sorry for the dumb questions, if they have been discussed already.

bilal

Bilal,

What Bruce was referring to are the following RFC's and JavaMail spec.

IMAP4 RFC
http://www.faqs.org/rfcs/rfc1730.html

POP3 RFC
http://www.faqs.org/rfcs/rfc1939.html

The following page has links to both JavaMail API doc and specs
http://java.sun.com/products/javamail/reference/api/index.html

http://java.sun.com/products/javamail/JavaMail-1.3-changes.txt

It's quite a bit to read :)

Regards,

Rajith Attapattu.

-----Original Message-----
From: Bruce Snyder [mailto:[EMAIL PROTECTED]
Sent: Monday, December 05, 2005 3:36 PM
To: [email protected]; [EMAIL PROTECTED]
Subject: Re: Who wants to write POP and IMAP transports? [status]

On 12/5/05, Bilal Bhatti <[EMAIL PROTECTED]> wrote:

Can you share the resources you have found about IMAP/JavaMail etc. in
your research.  Let me know where I can help you with that. I'm not a
mail
expert  but I will help where possible.
The majority of the resources I've found I have already noted in the
discussions on the topic of POP and IMAP transports (i.e., JavaMail
spec, relevant RFCs).

Bruce
--
perl -e 'print
unpack("u30","D0G)[EMAIL PROTECTED]&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*"
);'

The Castor Project
http://www.castor.org/

Apache Geronimo
http://geronimo.apache.org/



-- bilal

-----
"We act as though comfort and luxury were the chief requirements of life,
when all that we need to make us happy is something to be enthusiastic
about." - Einstein



Reply via email to