mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
core.usermanager, various modules: Disconnect other resources on password change (thanks waqas) (fixes #512)
This commit is contained in:
parent
cc8653d31c
commit
73b75571e6
6 changed files with 24 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue