mod_component: Specify an error source for Component unavailable errors

It is somewhat ambiguous where an error really comes from in the case of
an external component.

Setting by to the bare host at least distinguishes it from JIDs with a
node- or resourcepart.
This commit is contained in:
Kim Alvefur 2020-04-11 19:31:15 +02:00
parent 1f92aa9280
commit 608d6dd756

View file

@ -132,7 +132,7 @@ function module.add_host(module)
end
module:log("warn", "Component not connected, bouncing error for: %s", stanza:top_tag());
if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
event.origin.send(st.error_reply(stanza, "wait", "service-unavailable", "Component unavailable"));
event.origin.send(st.error_reply(stanza, "wait", "service-unavailable", "Component unavailable", module.host));
end
end
return true;