mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
stanza_router: Use stanza.attr.from's host instead of origin.host when routing stanzas to remote hosts (fixes problem with sending from node@host components)
This commit is contained in:
parent
100822df21
commit
cdea8358b2
1 changed files with 2 additions and 2 deletions
|
@ -310,8 +310,8 @@ function core_route_stanza(origin, stanza)
|
|||
stanza.attr.xmlns = xmlns; -- reset
|
||||
elseif origin.type == "component" or origin.type == "local" then
|
||||
-- Route via s2s for components and modules
|
||||
log("debug", "Routing outgoing stanza for %s to %s", origin.host, host);
|
||||
send_s2s(origin.host, host, stanza);
|
||||
log("debug", "Routing outgoing stanza for %s to %s", from_host, host);
|
||||
send_s2s(from_host, host, stanza);
|
||||
else
|
||||
log("warn", "received stanza from unhandled connection type: %s", origin.type);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue