From f39aa9d585844cf5f15281d901219750e3cef36c Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Mon, 8 Jan 2018 21:28:06 +0100 Subject: [PATCH] Also set From header for normal mail. --- setup.py | 2 +- ticdesk/settings.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b578766..e89bc8c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='ticdesk', - version='0.12.2', + version='0.12.3', packages=find_packages(), include_package_data=True, author='Teckids e.V.', diff --git a/ticdesk/settings.py b/ticdesk/settings.py index 261af3e..3401465 100644 --- a/ticdesk/settings.py +++ b/ticdesk/settings.py @@ -166,6 +166,7 @@ STATICFILES_DIRS = [ ] ADMINS = [('Teckids e.V. Admins', 'root@teckids.org')] +DEFAULT_FROM_EMAIL = 'www-data@ticdesk.teckids.org' SERVER_EMAIL = 'www-data@ticdesk.teckids.org' EMAIL_SUBJECT_PREFIX = '[Ticdesk] ' -- GitLab