python メールをどこにも送らずHTMLで保存するSMTPサーバ mocksmtpd.rb - こせきの技術日記がホッテントリに入っていたので同じような物をPythonで書いてみた。メールを受信すると1225602012.txtみたいなファイル名で保存される。 import asyncore import smtpd from email import message_from_string from time import time class MySMTPServer(smtpd.SMTPServer): def process_message(self, peer, mailfrom, rcpttos, data): msg = message_from_string(data) open(str(int(time()))+'.txt', 'w').write(msg.as_st