Changeset

1846:fdb43fc1bafc

mod_saslauth: Prep username used for authenticating a session
author Matthew Wild <mwild1@gmail.com>
date Tue, 29 Sep 2009 19:54:31 +0100
parents 1844:a4a8fe2a560c
children 1847:1842da566c7d 1848:0033359aeb70
files plugins/mod_saslauth.lua
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua	Tue Sep 29 19:05:32 2009 +0100
+++ b/plugins/mod_saslauth.lua	Tue Sep 29 19:54:31 2009 +0100
@@ -52,14 +52,14 @@
 	if status == "failure" then
 		session.sasl_handler = nil;
 	elseif status == "success" then
-		if not session.sasl_handler.username then -- TODO move this to sessionmanager
+		local username = nodeprep(session.sasl_handler.username);
+		session.sasl_handler = nil;
+		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;
 		end 
-		sm_make_authenticated(session, session.sasl_handler.username);
-		session.sasl_handler = nil;
+		sm_make_authenticated(session, username);
 		session:reset_stream();
 	end
 end