mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.sasl.*, mod_auth_*, mod_saslauth: Pass SASL handler as first parameter to SASL profile callbacks.
This commit is contained in:
parent
a4d4abfeb7
commit
aa144af70e
8 changed files with 12 additions and 12 deletions
|
@ -138,7 +138,7 @@ function new_hashpass_provider(host)
|
|||
function provider.get_sasl_handler()
|
||||
local realm = module:get_option("sasl_realm") or module.host;
|
||||
local testpass_authentication_profile = {
|
||||
plain_test = function(username, password, realm)
|
||||
plain_test = function(sasl, username, password, realm)
|
||||
local prepped_username = nodeprep(username);
|
||||
if not prepped_username then
|
||||
log("debug", "NODEprep failed on username: %s", username);
|
||||
|
@ -146,7 +146,7 @@ function new_hashpass_provider(host)
|
|||
end
|
||||
return usermanager.test_password(prepped_username, realm, password), true;
|
||||
end,
|
||||
scram_sha_1 = function(username, realm)
|
||||
scram_sha_1 = function(sasl, username, realm)
|
||||
local credentials = datamanager.load(username, host, "accounts");
|
||||
if not credentials then return; end
|
||||
if credentials.password then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue