aboutsummaryrefslogtreecommitdiffstats
path: root/piccast/settings.py.example
diff options
context:
space:
mode:
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',
)