Diff

plugins/mod_saslauth.lua @ 4029:fb027b2811c2

mod_saslauth: Handle session bind requests to the host, fixes OneTeam login
author Matthew Wild <mwild1@gmail.com>
date Fri, 24 Dec 2010 18:54:54 +0000
parent 3553:1f0af8572f15
child 4049:fe6f4a255fd8
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua	Fri Dec 24 04:58:09 2010 +0000
+++ b/plugins/mod_saslauth.lua	Fri Dec 24 18:54:54 2010 +0000
@@ -189,7 +189,10 @@
 	return true;
 end);
 
-module:hook("iq/self/urn:ietf:params:xml:ns:xmpp-session:session", function(event)
+local function handle_legacy_session(event)
 	event.origin.send(st.reply(event.stanza));
 	return true;
-end);
+end
+
+module:hook("iq/self/urn:ietf:params:xml:ns:xmpp-session:session", handle_legacy_session);
+module:hook("iq/host/urn:ietf:params:xml:ns:xmpp-session:session", handle_legacy_session);