From patchwork Sat Nov 21 18:03:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Finucane X-Patchwork-Id: 547210 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 143B21401F6 for ; Sun, 22 Nov 2015 05:03:31 +1100 (AEDT) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id ED2A01A01E4 for ; Sun, 22 Nov 2015 05:03:30 +1100 (AEDT) X-Original-To: patchwork@lists.ozlabs.org Delivered-To: patchwork@lists.ozlabs.org Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by lists.ozlabs.org (Postfix) with ESMTP id 49CB41A01B2 for ; Sun, 22 Nov 2015 05:03:27 +1100 (AEDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 21 Nov 2015 10:03:26 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,328,1444719600"; d="scan'208";a="826092480" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 21 Nov 2015 10:03:25 -0800 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id tALI3OSS002011; Sat, 21 Nov 2015 18:03:24 GMT Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id tALI3Om6003811; Sat, 21 Nov 2015 18:03:24 GMT Received: (from sfinucan@localhost) by sivswdev01.ir.intel.com with id tALI3ObC003807; Sat, 21 Nov 2015 18:03:24 GMT From: Stephen Finucane To: patchwork@lists.ozlabs.org Subject: [PATCH] settings: Add console email backend Date: Sat, 21 Nov 2015 18:03:09 +0000 Message-Id: <1448128989-3763-1-git-send-email-stephen.finucane@intel.com> X-Mailer: git-send-email 2.0.0 X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Patchwork" 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 0f73a13..b4c0e58 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 #