diff options
-rw-r--r-- | aloha/settings.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/aloha/settings.py b/aloha/settings.py index 29d56f9..6f4eefe 100644 --- a/aloha/settings.py +++ b/aloha/settings.py @@ -166,6 +166,18 @@ LOGGING = { EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' +# Host for sending e-mail. +EMAIL_HOST = '' + +# Port for sending e-mail. +EMAIL_PORT = + +# Optional SMTP authentication information for EMAIL_HOST. +EMAIL_HOST_USER = '' +EMAIL_HOST_PASSWORD = '' +EMAIL_USE_TLS = True + + AUTH_PROFILE_MODULE = "allotter.Profile" LOGIN_URL = '/allotter/login' |