diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-06-11 00:25:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-11 00:25:07 +0100 |
commit | 2ddc13577c93505b887880fa715def9addeafafe (patch) | |
tree | 1fde49e429bd6180acf715ed6d79196b3d48790e /synapse/config | |
parent | add monthly active users to phonehome stats (#5252) (diff) | |
download | synapse-2ddc13577c93505b887880fa715def9addeafafe.tar.xz |
Don't warn user about password reset disabling through config code (#5387)
Moves the warning about password resets being disabled to the point where a user actually tries to reset their password. Is this an appropriate place for it to happen? Also removed the disabling of msisdn password resets when you don't have an email config, as that just doesn't make sense. Also change the error a user receives upon disabled passwords to specify that only email-based password reset is disabled.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/emailconfig.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/synapse/config/emailconfig.py b/synapse/config/emailconfig.py index ae04252906..86018dfcce 100644 --- a/synapse/config/emailconfig.py +++ b/synapse/config/emailconfig.py @@ -19,15 +19,12 @@ from __future__ import print_function # This file can't be called email.py because if it is, we cannot: import email.utils -import logging import os import pkg_resources from ._base import Config, ConfigError -logger = logging.getLogger(__name__) - class EmailConfig(Config): def read_config(self, config): @@ -85,10 +82,12 @@ class EmailConfig(Config): self.email_password_reset_behaviour = ( "remote" if email_trust_identity_server_for_password_resets else "local" ) + self.password_resets_were_disabled_due_to_email_config = False if self.email_password_reset_behaviour == "local" and email_config == {}: - logger.warn( - "User password resets have been disabled due to lack of email config" - ) + # We cannot warn the user this has happened here + # Instead do so when a user attempts to reset their password + self.password_resets_were_disabled_due_to_email_config = True + self.email_password_reset_behaviour = "off" # Get lifetime of a validation token in milliseconds |