Last active
January 31, 2018 12:37
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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