aboutsummaryrefslogtreecommitdiff
path: root/codemash/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'codemash/settings.py')
-rw-r--r--codemash/settings.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/codemash/settings.py b/codemash/settings.py
index 3bf0f6a..23b1b93 100644
--- a/codemash/settings.py
+++ b/codemash/settings.py
@@ -114,6 +114,12 @@ TEMPLATE_DIRS = (
114 os.path.join(PROJECT_ROOT, "templates"), 114 os.path.join(PROJECT_ROOT, "templates"),
115) 115)
116 116
117# The email backend to use. For possible shortcuts see django.core.mail.
118# The default is to use the SMTP backend.
119# Third-party backends can be specified by providing a Python path
120# to a module that defines an EmailBackend class.
121EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
122
117INSTALLED_APPS = ( 123INSTALLED_APPS = (
118 'django.contrib.auth', 124 'django.contrib.auth',
119 'django.contrib.contenttypes', 125 'django.contrib.contenttypes',
@@ -125,6 +131,8 @@ INSTALLED_APPS = (
125 # 'django.contrib.admin', 131 # 'django.contrib.admin',
126 # Uncomment the next line to enable admin documentation: 132 # Uncomment the next line to enable admin documentation:
127 # 'django.contrib.admindocs', 133 # 'django.contrib.admindocs',
134
135 'contact',
128) 136)
129 137
130# A sample logging configuration. The only tangible logging 138# A sample logging configuration. The only tangible logging