Use django email log
This commit is contained in:
parent
ed3d4e7661
commit
139b9ea8d0
2 changed files with 5 additions and 2 deletions
|
@ -229,6 +229,8 @@ INSTALLED_APPS = [
|
||||||
|
|
||||||
# stylesheets and js
|
# stylesheets and js
|
||||||
'compressor',
|
'compressor',
|
||||||
|
|
||||||
|
'email_log',
|
||||||
]
|
]
|
||||||
|
|
||||||
# A sample logging configuration. The only tangible logging
|
# A sample logging configuration. The only tangible logging
|
||||||
|
@ -270,7 +272,8 @@ FIXTURE_DIRS = [
|
||||||
|
|
||||||
# Heroku: Get email configuration from environment variables.
|
# Heroku: Get email configuration from environment variables.
|
||||||
|
|
||||||
EMAIL_BACKEND = os.environ.get("DJANGO_EMAIL_BACKEND", "django.core.mail.backends.console.EmailBackend") # noqa
|
EMAIL_BACKEND = "email_log.backends.EmailBackend"
|
||||||
|
EMAIL_LOG_BACKEND = os.environ.get("DJANGO_EMAIL_BACKEND", "django.core.mail.backends.console.EmailBackend") # noqa
|
||||||
EMAIL_HOST = os.environ.get("DJANGO_EMAIL_HOST", "")
|
EMAIL_HOST = os.environ.get("DJANGO_EMAIL_HOST", "")
|
||||||
EMAIL_PORT = int(os.environ.get("DJANGO_EMAIL_PORT", 25))
|
EMAIL_PORT = int(os.environ.get("DJANGO_EMAIL_PORT", 25))
|
||||||
EMAIL_HOST_USER = os.environ.get("DJANGO_EMAIL_HOST_USER", "")
|
EMAIL_HOST_USER = os.environ.get("DJANGO_EMAIL_HOST_USER", "")
|
||||||
|
|
|
@ -18,7 +18,7 @@ easy-thumbnails==2.4.1
|
||||||
django-timezone-field==2.0
|
django-timezone-field==2.0
|
||||||
django-model-utils==3.0.0
|
django-model-utils==3.0.0
|
||||||
wiki==0.3b3
|
wiki==0.3b3
|
||||||
|
django-email-log==0.2.0
|
||||||
|
|
||||||
# For testing
|
# For testing
|
||||||
django-nose==1.4.4
|
django-nose==1.4.4
|
||||||
|
|
Loading…
Reference in a new issue