Forced MAIL_USE_SSL to be false every time
All checks were successful
Docker Build / build (push) Successful in 42s

This commit is contained in:
izebra 2024-01-03 14:19:25 -08:00
parent ea3c80d150
commit a3c4b027af

View File

@ -252,10 +252,7 @@ def register_settings(app):
app.config['MAIL_PORT']
)
)
app.config['MAIL_USE_SSL'] = os.getenv(
'MAIL_USE_SSL',
app.config['MAIL_USE_SSL']
)
app.config['MAIL_USE_SSL'] = False
app.config['MAIL_USE_TLS'] = os.getenv(
'MAIL_USE_TLS',
app.config['MAIL_USE_TLS']