Created
October 27, 2022 12:26
-
-
Save h4sh5/f8b8df28f021ab5e4d3ebf229dc65c09 to your computer and use it in GitHub Desktop.
simple email sink 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
| #!/usr/bin/env python3 | |
| 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): | |
| 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(): | |
| # start the smtp server on localhost:1025 | |
| foo = EmlServer(('0.0.0.0', 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