Re: pop3 daemon with ssl/tls and STARTTLS, V2

2013-12-01 Thread Gilles Chehade
On Tue, Nov 26, 2013 at 06:19:14PM -0500, James Turner wrote: > > Hi Sunil, > > I've been following your development on bitbucket and want to see if you > ever got any feedback from the smtpd guys? > I don't use pop3 so I can't really give feedback on day to day use, but code look very readable

Re: pop3 daemon with ssl/tls and STARTTLS, V2

2013-11-26 Thread James Turner
On Thu, Jul 11, 2013 at 12:58:58AM +0530, Sunil Nimmagadda wrote: > Second iteration... > > 1. Fixed CRLF issues in RETR and TOP commands that caused message > truncation. > 2. Properly "byte stuff" a line beginning with termination > character "." . > 3. Implemented STLS and CAPA. (STARTTLS RFC 2

Re: pop3 daemon with ssl/tls and STARTTLS, V2

2013-07-10 Thread James Turner
On Thu, Jul 11, 2013 at 12:58:58AM +0530, Sunil Nimmagadda wrote: > Second iteration... > > 1. Fixed CRLF issues in RETR and TOP commands that caused message > truncation. > 2. Properly "byte stuff" a line beginning with termination > character "." . > 3. Implemented STLS and CAPA. (STARTTLS RFC 2

pop3 daemon with ssl/tls and STARTTLS, V2

2013-07-10 Thread Sunil Nimmagadda
Second iteration... 1. Fixed CRLF issues in RETR and TOP commands that caused message truncation. 2. Properly "byte stuff" a line beginning with termination character "." . 3. Implemented STLS and CAPA. (STARTTLS RFC 2595) Comments? Source: https://poolp.org/~sunil/pop3d.tar.gz uuencoded gzipped

Re: pop3 daemon with ssl

2013-06-27 Thread James Turner
On Thu, Jun 27, 2013 at 02:14:50PM -0400, James Turner wrote: > On Thu, Jun 27, 2013 at 11:50:48AM +0530, su...@sunilnimmagadda.com wrote: > > On Wed, Jun 26, 2013 at 09:08:20PM -0400, James Turner wrote: > > > On Wed, Jun 26, 2013 at 08:36:48PM -0400, James Turner wrote: > > > > On Thu, Jun 27, 20

Re: pop3 daemon with ssl

2013-06-27 Thread James Turner
On Thu, Jun 27, 2013 at 11:50:48AM +0530, su...@sunilnimmagadda.com wrote: > On Wed, Jun 26, 2013 at 09:08:20PM -0400, James Turner wrote: > > On Wed, Jun 26, 2013 at 08:36:48PM -0400, James Turner wrote: > > > On Thu, Jun 27, 2013 at 12:07:14AM +0530, su...@sunilnimmagadda.com wrote: > > > > Hello

Re: pop3 daemon with ssl

2013-06-26 Thread sunil
On Wed, Jun 26, 2013 at 09:08:20PM -0400, James Turner wrote: > On Wed, Jun 26, 2013 at 08:36:48PM -0400, James Turner wrote: > > On Thu, Jun 27, 2013 at 12:07:14AM +0530, su...@sunilnimmagadda.com wrote: > > > Hello, > > > > > > This is an implementation of RFC1939 with pop3s(port 995) support >

Re: pop3 daemon with ssl

2013-06-26 Thread Philip Guenther
On Wed, Jun 26, 2013 at 6:08 PM, James Turner wrote: > First, if you connect to port 995 with telnet instead of say openssl > s_client and issue any command pop3d dies and leaves the following > "fatal: session lost". Even running ^] from telnet after connecting is > enough to cause this behavior.

Re: pop3 daemon with ssl

2013-06-26 Thread James Turner
On Wed, Jun 26, 2013 at 08:36:48PM -0400, James Turner wrote: > On Thu, Jun 27, 2013 at 12:07:14AM +0530, su...@sunilnimmagadda.com wrote: > > Hello, > > > > This is an implementation of RFC1939 with pop3s(port 995) support > > out of box. The DESIGN document outlines the processes setup and > >

Re: pop3 daemon with ssl

2013-06-26 Thread James Turner
On Thu, Jun 27, 2013 at 12:07:14AM +0530, su...@sunilnimmagadda.com wrote: > Hello, > > This is an implementation of RFC1939 with pop3s(port 995) support > out of box. The DESIGN document outlines the processes setup and > imsg exchange. It needs a user named "_pop3d", a certificate named > "ser

pop3 daemon with ssl

2013-06-26 Thread sunil
Hello, This is an implementation of RFC1939 with pop3s(port 995) support out of box. The DESIGN document outlines the processes setup and imsg exchange. It needs a user named "_pop3d", a certificate named "server.crt" in /etc/ssl and its key named "server.key" in /etc/ssl/private to run. Tested