From 30b41f82d6d112fb1b84fc6f97aed5fd3ac51974 Mon Sep 17 00:00:00 2001 From: Pat O'Brien <3484775+poblabs@users.noreply.github.com> Date: Thu, 3 Oct 2019 09:49:26 -0400 Subject: [PATCH] Update config port option name Using "PORT" failed for me. Using "MAILPORT" which matches the config.ini worked. --- python/mailserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mailserver.py b/python/mailserver.py index 4fad814..0d62489 100644 --- a/python/mailserver.py +++ b/python/mailserver.py @@ -124,7 +124,7 @@ if __name__ == '__main__': else : Config = ConfigParser.ConfigParser() Config.read("../config.ini") - port = int(Config.get("MAILSERVER","PORT")) + port = int(Config.get("MAILSERVER","MAILPORT"))