Diff

plugins/mod_saslauth.lua @ 5832:7d100d917243

mod_saslauth: Set secure socket as SASL object user data for secure sessions.
author Tobias Markmann <tm@ayena.de>
date Mon, 17 Jan 2011 16:50:21 +0100
parent 3983:38ec7255b111
child 5834:c0cc4e73d9fa
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua	Mon Jan 17 16:50:21 2011 +0100
+++ b/plugins/mod_saslauth.lua	Mon Jan 17 16:50:21 2011 +0100
@@ -246,6 +246,10 @@
 			return;
 		end
 		origin.sasl_handler = usermanager_get_sasl_handler(module.host);
+		
+		if origin.secure then
+			origin.sasl_handler["userdata"] = origin.conn:socket();
+		end
 		features:tag("mechanisms", mechanisms_attr);
 		for mechanism in pairs(origin.sasl_handler:mechanisms()) do
 			if mechanism ~= "PLAIN" or origin.secure or allow_unencrypted_plain_auth then