From ee65f67fe3fa74e4e2c9ace8e0ebcc4144c157fd Mon Sep 17 00:00:00 2001 From: aronwk-aaron Date: Tue, 14 Feb 2023 16:13:27 -0600 Subject: [PATCH] actually fix mail port --- app/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/__init__.py b/app/__init__.py index 67a7413..67a9ac1 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -253,7 +253,7 @@ def register_settings(app): ) app.config['MAIL_PORT'] = int( os.getenv( - 'MAIL_USE_SSL', + 'MAIL_PORT', app.config['MAIL_PORT'] ) )