diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-08 15:03:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-08 15:03:26 +0200 |
commit | ab950b3e7993c975a951c0adc9f83a4dd6414dd6 (patch) | |
tree | ce60dabed8d26d084bad204263dbd06283bd7d5d /plugins/mod_s2s | |
parent | 4a73f5daefc054f575940a37984a7493e0574eb9 (diff) | |
download | prosody-ab950b3e7993c975a951c0adc9f83a4dd6414dd6.tar.gz prosody-ab950b3e7993c975a951c0adc9f83a4dd6414dd6.zip |
mod_s2s: Indicate origin of s2s error
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 5f590338..aae37b7f 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -81,7 +81,7 @@ local function bounce_sendq(session, reason) local reply = data[2]; if reply and not(reply.attr.xmlns) and bouncy_stanzas[reply.name] then reply.attr.type = "error"; - reply:tag("error", {type = "cancel"}) + reply:tag("error", {type = "cancel", by = session.from_host}) :tag("remote-server-not-found", {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}):up(); if reason then reply:tag("text", {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}) |