core.usermanager, various modules: Disconnect other resources on password change (thanks waqas) (fixes #512)

This commit is contained in:
Kim Alvefur 2017-07-28 13:15:29 +02:00
parent cc8653d31c
commit 73b75571e6
6 changed files with 24 additions and 6 deletions

View file

@ -120,7 +120,9 @@ function provider.get_sasl_handler()
local credentials = accounts:get(username);
if not credentials then return; end
if credentials.password then
usermanager.set_password(username, credentials.password, host);
if provider.set_password(username, credentials.password) == nil then
return nil, "Auth failed. Could not set hashed password from plaintext.";
end
credentials = accounts:get(username);
if not credentials then return; end
end