mod_saslauth: Handle session bind requests to the host, fixes OneTeam login

Fri, 24 Dec 2010 18:54:54 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Fri, 24 Dec 2010 18:54:54 +0000
changeset 3961
94d9fb07c49c
parent 3960
bb8a064883fc
child 3962
c77eff3ac5e1

mod_saslauth: Handle session bind requests to the host, fixes OneTeam login

plugins/mod_saslauth.lua file | annotate | diff | comparison | revisions
--- 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
@@ -321,7 +321,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);

mercurial