summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app.py2
-rw-r--r--default_settings.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/app.py b/app.py
index 3dcb8ea..6419571 100644
--- a/app.py
+++ b/app.py
@@ -116,7 +116,7 @@ def register_complete(token):
if app.config.get('MAIL_REGISTER_NOTIFY'):
send_mail(
app.config['MAIL_REGISTER_NOTIFY'],
- u'[accounts] Neuer Benutzer %s' % username,
+ u'[accounts] Neuer Benutzer %s erstellt' % username,
'Benutzername: %s\nE-Mail: %s\n' % (username, mail)
)
diff --git a/default_settings.py b/default_settings.py
index 62337ac..c3a7db8 100644
--- a/default_settings.py
+++ b/default_settings.py
@@ -7,7 +7,7 @@ SECRET_KEY = 'remember to change this to something more random and secret'
# CHANGE THIS! (e.g. os.urandom(32) )
PASSWORD_ENCRYPTION_KEY = '.\x14\xa7\x1b\xa2:\x1b\xb7\xbck\x1bD w\xab\x87a\xb4\xb7\xca\xf1\x06\xb0\x9f?q\x13\x05\x8dY\xe5<'
-MAIL_DEFAULT_SENDER = 'help-me-help-me-please@spline.de'
+MAIL_DEFAULT_SENDER = 'noreply@spline.de'
MAIL_CONFIRM_SENDER = 'spline accounts <noreply@accounts.spline.de>'
MAIL_REGISTER_NOTIFY = None