diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-02-27 15:00:46 -0800 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-02-27 15:05:54 -0800 |
commit | 766dd613a68451652a54f7eab7f476c4b66dbdf8 (patch) | |
tree | 0141f0905db9880f1f7807cbb0442aaaf5800a6d | |
parent | 5aa91201db4fee539a60f2f9e798593448d42af7 (diff) |
Allow Configuring 'DEFAULT_EMAIL_FROM' in Django
This sets the default 'FROM' address in the header of outgoing emails
from the system. Making this configurable allows users to specify the
address notification emails come from.
Change-Id: Ibe229ef503847411f4879d5715392f816a455733
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
-rw-r--r-- | config.env.sample | 1 | ||||
-rw-r--r-- | src/pharos_dashboard/settings.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/config.env.sample b/config.env.sample index edd2bf0..c36e52a 100644 --- a/config.env.sample +++ b/config.env.sample @@ -31,3 +31,4 @@ EMAIL_HOST= EMAIL_PORT= EMAIL_HOST_USER= EMAIL_HOST_PASSWORD= +DEFAULT_FROM_EMAIL=webmaster@localhost diff --git a/src/pharos_dashboard/settings.py b/src/pharos_dashboard/settings.py index 361c4a1..0ac5479 100644 --- a/src/pharos_dashboard/settings.py +++ b/src/pharos_dashboard/settings.py @@ -196,3 +196,4 @@ EMAIL_PORT = os.environ['EMAIL_PORT'] EMAIL_HOST_USER = os.environ['EMAIL_HOST_USER'] EMAIL_HOST_PASSWORD = os.environ['EMAIL_HOST_PASSWORD'] EMAIL_USE_TLS=True +DEFAULT_EMAIL_FROM = os.environ.get('DEFAULT_EMAIL_FROM', 'webmaster@localhost') |