Skip to content

Instantly share code, notes, and snippets.

@nipuntalukdar
Created June 2, 2024 16:01
Show Gist options
  • Select an option

  • Save nipuntalukdar/a0b3d8f2eff287ac15ecb7f3dd238885 to your computer and use it in GitHub Desktop.

Select an option

Save nipuntalukdar/a0b3d8f2eff287ac15ecb7f3dd238885 to your computer and use it in GitHub Desktop.
Simple SMTP server
from __future__ import print_function
from datetime import datetime
import asyncore
from smtpd import SMTPServer
class EmlServer(SMTPServer):
no = 0
def process_message(self, peer, mailfrom, rcpttos, data, mail_options=None,
rcpt_options=None):
filename = '%s-%d.eml' % (datetime.now().strftime('%Y%m%d%H%M%S'),
self.no)
f = open(filename, 'w')
f.write(str(data))
f.close
print('%s saved.' % filename)
self.no += 1
def run():
# start the smtp server on localhost:1025
foo = EmlServer(('localhost', 1025), 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