# HG changeset patch # User Matthew Wild # Date 1343309261 -3600 # Node ID f25b6a9f97bbe7738384c56034169dafa819c93f # Parent e54b92a26d40105c92abe1e84699d87546bf565f mod_compat_bind: Compatibility (ugh) with clients that send the resource bind to the login host (ugh) diff -r e54b92a26d40 -r f25b6a9f97bb mod_compat_bind/mod_compat_bind.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_compat_bind/mod_compat_bind.lua Thu Jul 26 14:27:41 2012 +0100 @@ -0,0 +1,13 @@ +-- Compatibility with clients that set 'to' on resource bind requests +-- +-- http://xmpp.org/rfcs/rfc3920.html#bind +-- http://xmpp.org/rfcs/rfc6120.html#bind-servergen-success + +local st = require "util.stanza"; + +module:hook("iq/host/urn:ietf:params:xml:ns:xmpp-bind:bind", function(event) + local fixed_stanza = st.clone(event.stanza); + fixed_stanza.attr.to = nil; + core_process_stanza(event.origin, fixed_stanza); + return true; +end);