diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-06-11 21:01:17 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-06-11 21:01:17 +0500 |
commit | bb5877bcfa52a29d70f6521b8d77596dfdfa9819 (patch) | |
tree | 9218b0f36a57bc728b73e08f9282c7eb40166fc7 /plugins/mod_saslauth.lua | |
parent | bbecbdc8948443a926309ac534c23976c226a73e (diff) | |
download | prosody-bb5877bcfa52a29d70f6521b8d77596dfdfa9819.tar.gz prosody-bb5877bcfa52a29d70f6521b8d77596dfdfa9819.zip |
mod_saslauth: Return proper error on invalid usernames.
Diffstat (limited to 'plugins/mod_saslauth.lua')
-rw-r--r-- | plugins/mod_saslauth.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index 9f940c37..d407e5da 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -109,17 +109,17 @@ local function handle_status(session, status, ret, err_msg) session.sasl_handler = session.sasl_handler:clean_clone(); elseif status == "success" then local username = nodeprep(session.sasl_handler.username); - if not username then -- TODO move this to sessionmanager - module:log("warn", "SASL succeeded but we didn't get a username!"); - session.sasl_handler = nil; - session:reset_stream(); - return status, ret, err_msg; - end if not(require_provisioning) or usermanager_user_exists(username, session.host) then - sm_make_authenticated(session, session.sasl_handler.username); - session.sasl_handler = nil; - session:reset_stream(); + local aret, err = sm_make_authenticated(session, session.sasl_handler.username); + if aret then + session.sasl_handler = nil; + session:reset_stream(); + else + module:log("warn", "SASL succeeded but username was invalid"); + session.sasl_handler = session.sasl_handler:clean_clone(); + return "failure", "not-authorized", "User authenticated successfully, but username was invalid"; + end else module:log("warn", "SASL succeeded but we don't have an account provisioned for %s", username); session.sasl_handler = session.sasl_handler:clean_clone(); |