plugins/mod_saslauth.lua
changeset 4029 fb027b2811c2
parent 3553 1f0af8572f15
child 4049 fe6f4a255fd8
--- 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);