X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Fsettings.py;h=c9b300585ec98ad807d00313182bdbec8bc29df9;hb=dd6a3c82ae4bc1f7cea47551a546b2f7aeda3df6;hp=2dbb8618cead965936ad73a64a693a3ccf1f0272;hpb=50f3f9251618c6a095bfb6188e43eea7b0acae48;p=myslice.git diff --git a/myslice/settings.py b/myslice/settings.py index 2dbb8618..c9b30058 100644 --- a/myslice/settings.py +++ b/myslice/settings.py @@ -24,11 +24,23 @@ if not ROOT: #################### ADMINS = ( - # ('Your Name', 'your_email@example.com'), + # ('your_name', 'your_email@test.com'), ) MANAGERS = ADMINS +# Mail configuration +#DEFAULT_FROM_EMAIL = "root@theseus.ipv6.lip6.fr" +#EMAIL_HOST_PASSWORD = "mypassword" + +EMAIL_HOST = "localhost" +EMAIL_PORT = 25 +EMAIL_USE_TLS = False + + + + + DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. @@ -153,8 +165,18 @@ INSTALLED_APPS = ( # 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', + 'portal', +# DEPRECATED # 'django.contrib.formtools', +# DEPRECATED ## 'crispy_forms', +# DEPRECATED # +# DEPRECATED # # User registration +# DEPRECATED # 'django.contrib.auth', +# DEPRECATED # 'django.contrib.sites', +# DEPRECATED # 'registration', ) +ACCOUNT_ACTIVATION_DAYS = 7 # One-week activation window; you may, of course, use a different value. + # A sample logging configuration. The only tangible logging # performed by this configuration is to send an email to # the site admins on every HTTP 500 error when DEBUG=False.