mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_auth_internal, mod_auth_internal_hashed: Remove checking for nil or empty password and pretending it means the user doesn't exist. Hopefully with more success than Custer.
This commit is contained in:
parent
3553829ba5
commit
c60ae1fda2
2 changed files with 0 additions and 8 deletions
|
@ -121,10 +121,6 @@ function new_hashpass_provider(host)
|
|||
log("debug", "account not found for username '%s' at host '%s'", username, module.host);
|
||||
return nil, "Auth failed. Invalid username";
|
||||
end
|
||||
--[[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);
|
||||
return nil, "Auth failed. Password invalid.";
|
||||
end]]
|
||||
return true;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue