From: Stephen Finucane Date: Sat, 21 Nov 2015 17:22:22 +0000 (+0000) Subject: settings: Add console email backend X-Git-Tag: v1.1.0~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f389854e6ee3cd8ae668a95fff6222f6ea42a85;p=thirdparty%2Fpatchwork.git settings: Add console email backend Requiring configuration of an email server and email recipients for debugging of email-based features is impractical. Use the console backend provided by Django as the development default. Signed-off-by: Stephen Finucane --- diff --git a/patchwork/settings/dev.py b/patchwork/settings/dev.py index 0f73a135..b4c0e589 100644 --- a/patchwork/settings/dev.py +++ b/patchwork/settings/dev.py @@ -51,6 +51,10 @@ else: 'CHARSET': 'utf8', } +# Email + +EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' + # # Patchwork settings #