tests/dummysmtpd.py
changeset 39029 78f1899e4202
parent 36566 ed96d1116302
child 43076 2372284d9457
--- a/tests/dummysmtpd.py	Thu Aug 09 17:44:36 2018 -0400
+++ b/tests/dummysmtpd.py	Thu Aug 09 17:46:07 2018 -0400
@@ -26,7 +26,7 @@
     def __init__(self, localaddr):
         smtpd.SMTPServer.__init__(self, localaddr, remoteaddr=None)
 
-    def process_message(self, peer, mailfrom, rcpttos, data):
+    def process_message(self, peer, mailfrom, rcpttos, data, **kwargs):
         log('%s from=%s to=%s\n' % (peer[0], mailfrom, ', '.join(rcpttos)))
 
     def handle_error(self):