SMTP sink server: prettier output

 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
27
28
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 'Email received at %s and saved as %s' % (datetime.now().strftime('%H:%M:%S'), filename)
        self.no += 1


def run():
    print 'Python SMTP server'
    print 'Quit the server with CONTROL-C.'
    foo = EmlServer(('localhost', 25), None)
    try:
        asyncore.loop()
    except KeyboardInterrupt:
        pass


if __name__ == '__main__':
	run()

More like this

  1. SMTP sink server by twinsant 6 years, 2 months ago
  2. DebugFooter middleware with Pygments sql syntax highlighting by monolar 4 years, 11 months ago
  3. Authenticate with Email Address by thom 6 years, 1 month ago
  4. A few jinja2 filters like django ones by brondsem 4 years, 2 months ago
  5. Updated - Template context debugger with (I)Pdb by dnordberg 3 years, 9 months ago

Comments

RobertPattinson (on July 30, 2012):

I'm so happy to learn that it's helpful it's been quite helpful while I'm tweaking the SMTP sink server: registration messages and confirmations. Thanks! RP ---iPad 2 Cases---

#

(Forgotten your password?)