From 8f389854e6ee3cd8ae668a95fff6222f6ea42a85 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Sat, 21 Nov 2015 17:22:22 +0000 Subject: [PATCH] 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 --- patchwork/settings/dev.py | 4 ++++ 1 file changed, 4 insertions(+) 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 # -- 2.47.3