Login

SMTP sink server

Author:
twinsant
Posted:
March 9, 2007
Language:
Python
Version:
Pre .96
Score:
41 (after 41 ratings)

In development, we need a SMTP Server to see the results of send mail via SMTP protocol in Python application. Instead of configure a mail daemon, we could use this little script to receive the SMTP request, and save each session into an EML file. *.eml could be viewed with your favorite email client, you need not send them out.

EML description

Update: Fix bug for overwrite files when received multi-message in one SMTP session.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from datetime import datetime
import asyncore
from smtpd import SMTPServer

class EmlServer(SMTPServer):
    no = 0
    def process_message(self, peer, mailfrom, rcpttos, data):
        filename = '%s-%d.eml' % (datetime.now().strftime('%Y%m%d%H%M%S'),
                self.no)
        f = open(filename, 'w')
        f.write(data)
        f.close
        print '%s saved.' % filename
        self.no += 1


def run():
    foo = EmlServer(('localhost', 25), None)
    try:
        asyncore.loop()
    except KeyboardInterrupt:
        pass


if __name__ == '__main__':
	run()

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 1 week ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 9 months, 4 weeks ago
  5. Help text hyperlinks by sa2812 10 months, 3 weeks ago

Comments

twinsant (on March 20, 2007):

I'm so happy to learn that it's helpful to you:)

Note: This sinppet has been fixed for bug overwriting files when received multi-messages in on session.

#

zgoda (on July 13, 2007):

This snippet requires running it from root account. You have to add some code to bind to a port number over 1024. Like in line 17 and 18:

def run(port=25):
    foo = EmlServer(('localhost', port), None)

and later in line 26 and later:

try:
    port = int(sys.argv[1])
except IndexError:
    sys.exit("Usage: smtpsink.py <port>")
run(port)

Of course, you have to import sys at the top of the module too.

#

arne (on August 27, 2007):

very useful, thanks for sharing this snippet

#

vung (on December 23, 2007):

Line 12 should be: f.close()

#

zero (on February 12, 2008):

instead of writing an .eml you can directly send your mail to the built in python mail server. on a shell do:

sudo /usr/lib/python2.4/smtpd.py -n -c DebuggingServer localhost:25

then send your mails to localhost:25 and you will see the results immediately :-)

#

hasenj (on September 21, 2008):

thank you man, this is awesome!! helps so much!

#

bartTC (on June 3, 2012):

I'm still using this after years.

#

jezdez (on June 3, 2012):

Me too!

#

Please login first before commenting.