Added the gmail settings

This commit is contained in:
Raynaldo Rivera 2014-10-15 18:31:00 -07:00
parent e6d24b2a72
commit 304c1d5109

View File

@ -33,14 +33,13 @@ BROKER_URL = 'amqp://guest:guest@localhost:5672/'
CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler" CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler"
# EMAIL SETTINGS # EMAIL SETTINGS
# By default uses the python smtpd server # By default setup for gmail
DOMAIN = 'https://the99eve.com' DOMAIN = 'https://the99eve.com'
EMAIL_HOST = 'localhost' EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 1025 EMAIL_PORT = 587
EMAIL_HOST_USER = '' EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = '' EMAIL_HOST_PASSWORD = ''
EMAIL_USE_TLS = False EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = 'testing@example.com'
# Application definition # Application definition
INSTALLED_APPS = ( INSTALLED_APPS = (