Skip to content

Instantly share code, notes, and snippets.

@fabiuxx
Last active January 31, 2018 12:37
Show Gist options
  • Save fabiuxx/e4c13e331cc58242795b7b816dc8e41a to your computer and use it in GitHub Desktop.
Save fabiuxx/e4c13e331cc58242795b7b816dc8e41a to your computer and use it in GitHub Desktop.
Script que permite ejecutar un servidor SMTP y persistir los correos como archivos EML.
# -*- coding: utf-8 -*-
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()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment