smtp server

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Fernando Rodriguez

    smtp server

    Hi,

    Is there any python smtp server available with source?

    TIA
  • Andrew Bennetts

    #2
    Re: smtp server

    On Wed, Nov 19, 2003 at 12:00:29PM +0100, Fernando Rodriguez wrote:[color=blue]
    > Hi,
    >
    > Is there any python smtp server available with source?[/color]

    There's a server called Quotient which does SMTP (among other things):



    But as the README says:

    This release is aimed at developers and early adopters. Feel free to
    give it a try, but don't use it as your primary email system - yet!

    I haven't spent much time with it, but it looks interesting. It's a bit
    rough to get going, though -- the setup.py didn't quite install everything
    it needed to, and the documentation is sparse.

    Are you after a ready-made server, or an SMTP server library? If the
    latter, you might find Quotient and Twisted (the library Quotient is built
    upon) to be a handy starting point.

    -Andrew.


    Comment

    • Gerhard Häring

      #3
      Re: smtp server

      Fernando Rodriguez wrote:[color=blue]
      > Hi,
      >
      > Is there any python smtp server available with source?[/color]

      Try this:

      import smtpd

      -- Gerhard


      Comment

      • Fernando Rodriguez

        #4
        Re: smtp server

        On Wed, 19 Nov 2003 13:54:52 +0100, Gerhard Häring <gh@ghaering.de > wrote:
        [color=blue]
        >Fernando Rodriguez wrote:[color=green]
        >> Hi,
        >>
        >> Is there any python smtp server available with source?[/color]
        >
        >Try this:
        >
        >import smtpd[/color]

        I'll check it out, thanks. It's not included in the docs though...

        Comment

        Working...