diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-06-07 15:30:54 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-06-14 15:05:56 +0100 |
commit | 6d56a694f4cbfaf9c57a56837d4170e6c6783f3c (patch) | |
tree | e46a7f7e08ce8d547e9d0a1fefb65a66fe2d3398 /synapse/handlers/account_validity.py | |
parent | Track deactivated accounts in the database (#5378) (diff) | |
download | synapse-6d56a694f4cbfaf9c57a56837d4170e6c6783f3c.tar.xz |
Don't send renewal emails to deactivated users
Diffstat (limited to 'synapse/handlers/account_validity.py')
-rw-r--r-- | synapse/handlers/account_validity.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/handlers/account_validity.py b/synapse/handlers/account_validity.py index 261446517d..5e0b92eb1c 100644 --- a/synapse/handlers/account_validity.py +++ b/synapse/handlers/account_validity.py @@ -110,6 +110,9 @@ class AccountValidityHandler(object): # Stop right here if the user doesn't have at least one email address. # In this case, they will have to ask their server admin to renew their # account manually. + # We don't need to do a specific check to make sure the account isn't + # deactivated, as a deactivated account isn't supposed to have any + # email address attached to it. if not addresses: return |