mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_auth_internal_hashed: Don't assume user doesn't exist if no recognizable authentication data is found.
This commit is contained in:
parent
20e4e09b0e
commit
c44856d4d0
1 changed files with 2 additions and 2 deletions
|
@ -100,10 +100,10 @@ function new_hashpass_provider(host)
|
||||||
log("debug", "account not found for username '%s' at host '%s'", username, module.host);
|
log("debug", "account not found for username '%s' at host '%s'", username, module.host);
|
||||||
return nil, "Auth failed. Invalid username";
|
return nil, "Auth failed. Invalid username";
|
||||||
end
|
end
|
||||||
if (account.hashpass == nil or string.len(account.hashpass) == 0) and (account.password == nil or string.len(account.password) == 0) then
|
--[[if (account.hashpass == nil or string.len(account.hashpass) == 0) and (account.password == nil or string.len(account.password) == 0) then
|
||||||
log("debug", "account password not set or zero-length for username '%s' at host '%s'", username, module.host);
|
log("debug", "account password not set or zero-length for username '%s' at host '%s'", username, module.host);
|
||||||
return nil, "Auth failed. Password invalid.";
|
return nil, "Auth failed. Password invalid.";
|
||||||
end
|
end]]
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue