Re: Email client in Pyhton

2005-08-26 Thread Gregory K. Johnson
On Thu, Aug 25, 2005 at 11:28:33PM -0700, Oren Tirosh wrote: > The mailbox module has recently been upgraded for full read-write > access by a student participating in google's Summer of Code. It is > currently under review for inclusion in the standard library. Yeah. I'm the student. :-) The OP

Re: Email client in Pyhton

2005-08-25 Thread Oren Tirosh
> IIRC, many of the mailbox modules (such as mailbox and > mhlib) are read-only, but they should provide a good starting point. The mailbox module has recently been upgraded for full read-write access by a student participating in google's Summer of Code. It is currently under review for inclusion

Re: Email client in Pyhton

2005-08-25 Thread knaren
> Start reading related RFCs like RFC2822, RFC2045/6/7, RFC2231, RFC821 > ... and then read Python documentation and you'll find that most of > these RFC are supported/implemented by python modules like > > - email > - smtlib > - rfc822 > > As far I know the most complete mail client written in

Re: Email client in Pyhton

2005-08-25 Thread knaren
Thanks micheal, for help. I think this could solve most of problem. -- K Naren,MeTel Team. http://www.midascomm.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Email client in Pyhton

2005-08-24 Thread Nemesis
Mentre io pensavo ad una intro simpatica "[EMAIL PROTECTED]" scriveva: > now i am planning to write a bear minimum email client in > pyhton. i found the smtp module of python could serve my > pupose. I can send message using mails using the smtp lib. > Now i'm looking

Re: Email client in Pyhton

2005-08-24 Thread rafi
> > now i am planning to write a bear minimum email client in > pyhton. i found the smtp module of python could serve my > pupose. I can send message using mails using the smtp lib. > Now i'm looking for some modules which can help me in > fetching the mails from the mailserver a

Re: Email client in Pyhton

2005-08-24 Thread Jonas Geiregat
[EMAIL PROTECTED] wrote: > Hi grp, > I new to this grp and python too. > i have started writing few python scripts myself. > > now i am planning to write a bear minimum email client in > pyhton. i found the smtp module of python could serve my > pupose. I can send message

Re: Email client in Pyhton

2005-08-24 Thread Michael Ekstrand
On Wed, 24 Aug 2005 20:15:01 +0530 (IST) [EMAIL PROTECTED] wrote: > now i am planning to write a bear minimum email client in > pyhton. i found the smtp module of python could serve my > pupose. I can send message using mails using the smtp lib. > Now i'm looking for some modules

Email client in Pyhton

2005-08-24 Thread knaren
Hi grp, I new to this grp and python too. i have started writing few python scripts myself. now i am planning to write a bear minimum email client in pyhton. i found the smtp module of python could serve my pupose. I can send message using mails using the smtp lib. Now i'm looking for