# HG changeset patch # User Waqas Hussain # Date 1226777128 -18000 # Node ID 5c405d7b06bb3824f66c09ad6eb7203230e605be # Parent 4f540755260cf2b36a4c240143271af8b662fa1e Set username on SASL success diff -r 4f540755260c -r 5c405d7b06bb plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Sat Nov 15 23:20:07 2008 +0500 +++ b/plugins/mod_saslauth.lua Sun Nov 16 00:25:28 2008 +0500 @@ -34,6 +34,8 @@ if status == "failure" then session.sasl_handler = nil; elseif status == "success" then + if not session.sasl_handler.username then error("SASL succeeded but we didn't get a username!"); end -- TODO move this to sessionmanager + sessionmanager.make_authenticated(session, session.sasl_handler.username); session.sasl_handler = nil; session:reset_stream(); end