From f5817edb901475c266251156caca1b80f7f9369a Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Thu, 22 Oct 2020 10:12:10 +0800 Subject: [PATCH] Removed option to shutdown SMTP server --- smtp2qnap4slack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smtp2qnap4slack.py b/smtp2qnap4slack.py index e5abc3d..01bc811 100644 --- a/smtp2qnap4slack.py +++ b/smtp2qnap4slack.py @@ -88,5 +88,5 @@ if __name__ == '__main__': handler = CustomHandler() controller = MyController(handler, hostname=LHOST, port=LPORT) controller.start() - input('SMTP server is running. Press Return to stop server and exit.\n') + print('SMTP server is running..\n') controller.stop()