Re: [Twisted-Python] ESMTP extension

2009-05-29 Thread Nicolas Toper
AFAIK the ESMTP client handles these cases, not the server. See http://twistedmatrix.com/trac/browser/trunk/twisted/mail/protocols.py#L125 Maybe I did not get something. On Sat, May 30, 2009 at 1:19 AM, Jean-Paul Calderone wrote: > On Fri, 29 May 2009 21:08:59 -0500, Nicolas Toper wrote: >>No

Re: [Twisted-Python] ESMTP extension

2009-05-29 Thread Jean-Paul Calderone
On Fri, 29 May 2009 21:08:59 -0500, Nicolas Toper wrote: >No problem, just DIGEST-MD5. No need for PLAIN or LOGIN? > I think it handles PLAIN and LOGIN already (and CRAM-MD5). Maybe we're not talking about the same API? I was thinking about the ESMTP server. Jean-Paul

Re: [Twisted-Python] ESMTP extension

2009-05-29 Thread Nicolas Toper
No problem, just DIGEST-MD5. No need for PLAIN or LOGIN? On Fri, May 29, 2009 at 7:25 AM, Jean-Paul Calderone wrote: > On Fri, 29 May 2009 01:00:05 -0500, Nicolas Toper wrote: >>Hi, >> >>I am using SMTP-AUTH with Twisted. I have extended smtp.mail to handle >>LOGIN and PLAIN on the server side

Re: [Twisted-Python] ESMTP extension

2009-05-29 Thread Jean-Paul Calderone
On Fri, 29 May 2009 01:00:05 -0500, Nicolas Toper wrote: >Hi, > >I am using SMTP-AUTH with Twisted. I have extended smtp.mail to handle >LOGIN and PLAIN on the server side (the version I have handles only >CRAM-MD5). I am adding currently DIGEST-MD5. > >Do you want a patch? > >If yes, what is the

[Twisted-Python] ESMTP extension

2009-05-28 Thread Nicolas Toper
Hi, I am using SMTP-AUTH with Twisted. I have extended smtp.mail to handle LOGIN and PLAIN on the server side (the version I have handles only CRAM-MD5). I am adding currently DIGEST-MD5. Do you want a patch? If yes, what is the best way to submit a patch (I could not find it on the wiki)? Best