Changeset

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
parents 5831:aa4bdabd3c0f
children 5833:b1fa865ee6b2
files plugins/mod_saslauth.lua
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
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