Parent Directory
|
Revision Log
- do not use TLS, will not work
1 | # Sites |
2 | SITE_ID = 1 |
3 | # Your site's domain. This is used only in this file. |
4 | SITE_DOMAIN = '<%= domain %>' |
5 | |
6 | ADMINS = ( |
7 | # ('Your Name', 'your_email@domain.com'), |
8 | ) |
9 | |
10 | MANAGERS = ADMINS |
11 | |
12 | DEBUG = True |
13 | TEMPLATE_DEBUG = DEBUG |
14 | SERVE_MEDIA = DEBUG |
15 | |
16 | # This defines who can see {% if debug %}{% endif %} blocks |
17 | INTERNAL_IPS=('127.0.0.1',) |
18 | |
19 | # Email sending |
20 | EMAIL_HOST = 'localhost' |
21 | EMAIL_HOST_USER = '' |
22 | EMAIL_HOST_PASSWORD = '' |
23 | EMAIL_USE_TLS = False |
24 | EMAIL_PORT = 587 |
25 | DEFAULT_FROM_EMAIL = 'noreply@%s' % SITE_DOMAIN |
ViewVC Help | |
Powered by ViewVC 1.1.28 |