[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: simple smtp server

Gavin Kistner

10/31/2006 8:00:00 PM

From: Hartin, Brian [mailto:Brian.Hartin@pearson.com]
> I second the question. :)

> From: mmalaidini@gmail.com [mailto:mmalaidini@gmail.com]
> > I'd like to understand if anybody has ever written a very simple
smtp
> > server (supporting SSL authentication). I'd like to write an
> > stmp proxy
> > for my own personal usage and I'm trying to understand where to
start.

I've never written a SMTP server, but:
http://phrogz.net/ProgrammingRuby/lib_network.ht...
is probably a good place to start.

1 Answer

mmalaidini

11/1/2006 4:17:00 AM

0

On Oct 31, 3:00 pm, "Gavin Kistner" <gavin.kist...@anark.com> wrote:
> I've never written aSMTPserver, but:
> http://phrogz.net/ProgrammingRuby/lib_network.ht...
> is probably a good place to start.

As far as I understand the Net::STMP class is related to client side
SMTP protocol only. Are you actually suggesting to take a look into and
by making the Net::SMTP to work with my server, gradually implement an
STMP server implementation?

Yes, I could do it, but it seems a long road to me.

MM