mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
parent
a7083d1ded
commit
71c6728e69
3 changed files with 25 additions and 2 deletions
|
@ -9,6 +9,7 @@
|
|||
|
||||
local datamanager = require "util.datamanager";
|
||||
local new_sasl = require "util.sasl".new;
|
||||
local saslprep = require "util.encodings".stringprep.saslprep;
|
||||
|
||||
local host = module.host;
|
||||
local provider = { name = "insecure" };
|
||||
|
@ -21,6 +22,10 @@ end
|
|||
|
||||
function provider.set_password(username, password)
|
||||
local account = datamanager.load(username, host, "accounts");
|
||||
password = saslprep(password);
|
||||
if not password then
|
||||
return nil, "Password fails SASLprep.";
|
||||
end
|
||||
if account then
|
||||
account.password = password;
|
||||
return datamanager.store(username, host, "accounts", account);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue