diff options
author | Komal Sheth | 2016-11-16 12:53:03 +0530 |
---|---|---|
committer | GitHub | 2016-11-16 12:53:03 +0530 |
commit | fa3573bff5a105a3dffac581dec32149f365fc4e (patch) | |
tree | c5fa3259852d09925cddea56ce6341dcfe787e2e /scipy2016/settings.py | |
parent | 331db7547658f166713d1af26d026b246b74d6d8 (diff) | |
parent | ff764c34183f3a2ee619068a406737c640b249f2 (diff) | |
download | SciPy2016-fa3573bff5a105a3dffac581dec32149f365fc4e.tar.gz SciPy2016-fa3573bff5a105a3dffac581dec32149f365fc4e.tar.bz2 SciPy2016-fa3573bff5a105a3dffac581dec32149f365fc4e.zip |
Merge pull request #30 from FOSSEE/Home_page
Home page
Diffstat (limited to 'scipy2016/settings.py')
-rwxr-xr-x | scipy2016/settings.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scipy2016/settings.py b/scipy2016/settings.py index c307bf0..d2a8745 100755 --- a/scipy2016/settings.py +++ b/scipy2016/settings.py @@ -24,6 +24,8 @@ SECRET_KEY = 'w81ia+6)sak!)t@kv=@x267y78ceh4iu2c@o@2#8+h$kua3e9a' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True +SESSION_EXPIRE_AT_BROWSER_CLOSE = True + TEMPLATE_DEBUG = True ALLOWED_HOSTS = [] @@ -159,3 +161,10 @@ LOGIN_REDIRECT_URL = '/2016/cfp' # smtp +ACCOUNT_ACTIVATION_DAYS = 7 +EMAIL_HOST = 'localhost' +EMAIL_PORT = 1025 +EMAIL_HOST_USER = '' +EMAIL_HOST_PASSWORD = '' +EMAIL_USE_TLS = False +DEFAULT_FROM_EMAIL = 'testing@example.com'
\ No newline at end of file |