revert port binding on email handler

This commit is contained in:
Son NK 2020-08-16 19:34:00 +02:00
parent 6835c5b69d
commit cbdd080587
1 changed files with 1 additions and 1 deletions

View File

@ -1268,7 +1268,7 @@ class MailHandler:
if __name__ == "__main__":
controller = Controller(MailHandler(), hostname="127.0.0.1", port=20381)
controller = Controller(MailHandler(), hostname="0.0.0.0", port=20381)
controller.start()
LOG.d("Start mail controller %s %s", controller.hostname, controller.port)