This commit is contained in:
halcyon
2015-04-01 18:58:10 +08:00
parent 359f70b9f9
commit e1b9134d7f
9 changed files with 266 additions and 27 deletions

View File

@@ -121,3 +121,10 @@ USE_TZ = False
STATIC_URL = '/static/'
# mail config
EMAIL_HOST = config.get('mail', 'email_host')
EMAIL_PORT = config.get('mail', 'email_port')
EMAIL_HOST_USER = config.get('mail', 'email_host_user')
EMAIL_HOST_PASSWORD = config.get('mail', 'email_host_password')
EMAIL_USE_TLS = config.get('mail', 'email_use_tls')