aboutsummaryrefslogtreecommitdiffstats
path: root/piccast/settings.py.example
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2011-05-07 15:11:11 -0400
committerbnewbold <bnewbold@robocracy.org>2011-05-07 15:11:11 -0400
commit647feb73a2c3cbcc30244a022da04f5be3aa3346 (patch)
tree9baad9d881cefcca4ca21f7713bceb06140b40a3 /piccast/settings.py.example
parent8d0cfc4a8107adf6c5f64ad8d03a0a30c92cc4c2 (diff)
downloadpiccast-647feb73a2c3cbcc30244a022da04f5be3aa3346.tar.gz
piccast-647feb73a2c3cbcc30244a022da04f5be3aa3346.zip
support contact form [WIP]
Diffstat (limited to 'piccast/settings.py.example')
-rw-r--r--piccast/settings.py.example7
1 files changed, 7 insertions, 0 deletions
diff --git a/piccast/settings.py.example b/piccast/settings.py.example
index 71ef664..dd23ae7 100644
--- a/piccast/settings.py.example
+++ b/piccast/settings.py.example
@@ -16,6 +16,12 @@ DATABASE_PASSWORD = '' # Not used with sqlite3.
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
+EMAIL_HOST = 'localhost'
+EMAIL_PORT = 587
+EMAIL_HOST_USER = ''
+EMAIL_HOST_PASSWORD = ''
+EMAIL_USE_TLS = False
+
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
@@ -82,4 +88,5 @@ INSTALLED_APPS = (
'django.contrib.admindocs',
'django.contrib.databrowse',
'piccast.feeds',
+ 'piccast.contact_form',
)