]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
settings: Move DEFAULT_FROM_EMAIL to the core settings section
authorDamien Lespiau <damien.lespiau@intel.com>
Sat, 26 Sep 2015 09:50:49 +0000 (10:50 +0100)
committerStephen Finucane <stephen.finucane@intel.com>
Thu, 5 Nov 2015 03:51:29 +0000 (03:51 +0000)
DEFAULT_FROM_EMAIL is actually a django setting, not a patchwork one.

v2: Capitalize the 'E' of 'Email' (Stephen Finucane)

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Acked-by: Stephen Finucane <stephen.finucane@intel.com>
patchwork/settings/base.py

index d00245d5d88bdffcd350e1a0b028570b3953af68..89d30c95fee9c1bd9c5312e6b8e8f5c3f6be3796 100644 (file)
@@ -64,6 +64,9 @@ TEMPLATE_DIRS = (
     os.path.join(ROOT_DIR, 'templates'),
 )
 
+# Email
+
+DEFAULT_FROM_EMAIL = 'Patchwork <patchwork@patchwork.example.com>'
 
 #
 # Auth settings
@@ -99,7 +102,6 @@ STATICFILES_DIRS = [
 #
 
 DEFAULT_PATCHES_PER_PAGE = 100
-DEFAULT_FROM_EMAIL = 'Patchwork <patchwork@patchwork.example.com>'
 
 CONFIRMATION_VALIDITY_DAYS = 7