From 647feb73a2c3cbcc30244a022da04f5be3aa3346 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sat, 7 May 2011 15:11:11 -0400 Subject: support contact form [WIP] --- piccast/settings.py.example | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'piccast/settings.py.example') 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', ) -- cgit v1.2.3