diff -r dc53343af9ac -r 3c8a28c1f331 plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Sat Nov 15 20:28:09 2008 +0100 +++ b/plugins/mod_saslauth.lua Sat Nov 15 20:28:49 2008 +0100 @@ -35,6 +35,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