plugins/mod_saslauth.lua

changeset 289
3c8a28c1f331
parent 288
dc53343af9ac
parent 287
5c405d7b06bb
child 291
5672d2be1bf3
--- 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

mercurial