diff options
author | Frederick Muriuki Muriithi | 2024-05-29 14:55:47 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-06-03 10:02:07 -0500 |
commit | fa08d8592f11bcec54119e72262f82585c5a630b (patch) | |
tree | 9a584aa63d52b2aef9f805e79e6f6162916112dd | |
parent | 4c928dcb959a68510bada756f48d5edc7409bff5 (diff) | |
download | gn-auth-fa08d8592f11bcec54119e72262f82585c5a630b.tar.gz |
Initialise default email settings for the application.
-rw-r--r-- | gn_auth/settings.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gn_auth/settings.py b/gn_auth/settings.py index 771aecf..7dc0105 100644 --- a/gn_auth/settings.py +++ b/gn_auth/settings.py @@ -32,3 +32,10 @@ CORS_HEADERS = [ # OpenSSL keys CLIENTS_SSL_PUBLIC_KEYS_DIR = "" # clients' public keys' directory SSL_PRIVATE_KEY = "" # authorisation server primary key + +## Email +SMTP_HOST = "smtp.genenetwork.org" # does not actually exist right now +SMTP_PORT = 587 +SMTP_TIMEOUT = 200 # seconds +SMTP_USER = "no-reply@genenetwork.org" +SMTP_PASSWORD = "asecrettoken" |