Created
June 2, 2024 16:01
-
-
Save nipuntalukdar/a0b3d8f2eff287ac15ecb7f3dd238885 to your computer and use it in GitHub Desktop.
Simple SMTP server
This file contains hidden or 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
| 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