aboutsummaryrefslogtreecommitdiff
path: root/app/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/config.py')
-rw-r--r--app/config.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/config.py b/app/config.py
index 29eb2ef..2a157fa 100644
--- a/app/config.py
+++ b/app/config.py
@@ -6,9 +6,6 @@ def load_config(path):
result = {
'SQLALCHEMY_DATABASE_URI': contents['database']['postgres_url'],
'SECRET_KEY': contents['server']['secret_key'],
- 'MAIL_SERVER': contents['email']['smtp_server'],
- 'MAIL_PORT': contents['email']['smtp_port'],
- 'MAIL_USE_TLS': contents['email']['smtp_tls'],
'SECURITY_REGISTERABLE': True,
'SECURITY_PASSWORD_SALT': contents['server']['secret_key']
}