diff options
author | maheshgudi | 2017-10-25 13:16:16 +0530 |
---|---|---|
committer | maheshgudi | 2017-10-25 13:16:16 +0530 |
commit | eaf1735f748279f3c9c313375c51f2f886292934 (patch) | |
tree | 57bbcb78ac88ddedd2f3544e115680fe0ab0a028 /yaksh/demo_templates/demo_settings.py | |
parent | 52c0408298a5559cb24f7e2f4251b207546c7d22 (diff) | |
parent | e45b9cce359567c28001b34e1ccd14b51130cdb3 (diff) | |
download | online_test-eaf1735f748279f3c9c313375c51f2f886292934.tar.gz online_test-eaf1735f748279f3c9c313375c51f2f886292934.tar.bz2 online_test-eaf1735f748279f3c9c313375c51f2f886292934.zip |
Merge branch '0.7_bugfix' of https://github.com/maheshgudi/online_test into 0.7_bugfix
Diffstat (limited to 'yaksh/demo_templates/demo_settings.py')
-rw-r--r-- | yaksh/demo_templates/demo_settings.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/yaksh/demo_templates/demo_settings.py b/yaksh/demo_templates/demo_settings.py index 3c38794..6089be5 100644 --- a/yaksh/demo_templates/demo_settings.py +++ b/yaksh/demo_templates/demo_settings.py @@ -111,6 +111,35 @@ EMAIL_PORT = 'your_email_port' EMAIL_HOST_USER = 'email_host_user' +EMAIL_HOST_PASSWORD = 'email_host_password' + +# Set EMAIL_BACKEND to 'django.core.mail.backends.smtp.EmailBackend' +# in production +EMAIL_BACKEND = 'django.core.mail.backends.dummy.EmailBackend' + +# SENDER_EMAIL, REPLY_EMAIL, PRODUCTION_URL, IS_DEVELOPMENT are used in email +# verification. Set the variables accordingly to avoid errors in production + +# This email id will be used as <from address> for sending emails. +# For example no_reply@<your_organization>.in can be used. +SENDER_EMAIL = 'your_email' + +# Organisation/Indivudual Name. +SENDER_NAME = 'your_name' + +# This email id will be used by users to send their queries +# For example queries@<your_organization>.in can be used. +REPLY_EMAIL = 'your_reply_email' + +# This url will be used in email verification to create activation link. +# Add your hosted url to this variable. +# For example https://127.0.0.1:8000 or 127.0.0.1:8000 +PRODUCTION_URL = 'your_project_url' + +# Set this variable to <False> once the project is in production. +# If this variable is kept <True> in production, email will not be verified. +IS_DEVELOPMENT = True + DEFAULT_FROM_EMAIL = EMAIL_HOST_USER TEMPLATES = [ |