mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_dialback: COMPAT reset session.send function for servers (e.g. ejabberd) which don't include a from attr when opening the stream.
This commit is contained in:
parent
bbd996911b
commit
47594d8faf
1 changed files with 3 additions and 0 deletions
|
@ -78,6 +78,9 @@ module:hook("stanza/jabber:server:dialback:result", function(event)
|
|||
if not origin.from_host then
|
||||
-- Just used for friendlier logging
|
||||
origin.from_host = attr.from;
|
||||
-- COMPAT: Fix ejabberd chopness by resetting the send function
|
||||
origin.log("debug", "Remote server didn't specify a from attr, resetting session.send now that we know where to knock to.");
|
||||
origin.send = function(stanza) hosts[attr.to].events.fire_event("route/remote", { from_host = origin.to_host, to_host = origin.from_host, stanza = stanza}); end
|
||||
end
|
||||
if not origin.to_host then
|
||||
-- Just used for friendlier logging
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue