Make the default mail sender use the Flask mail config value

This commit is contained in:
Joseph Schorr 2014-10-10 13:14:33 -04:00
parent adc915a5eb
commit 49f8629566
2 changed files with 4 additions and 6 deletions

View file

@ -55,7 +55,7 @@ class DefaultConfig(object):
MAIL_PORT = 587
MAIL_USERNAME = ''
MAIL_PASSWORD = ''
DEFAULT_MAIL_SENDER = ''
MAIL_DEFAULT_SENDER = 'support@quay.io'
MAIL_FAIL_SILENTLY = False
TESTING = True