aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-05-09 00:55:18 +0200
committerKim Alvefur <zash@zash.se>2020-05-09 00:55:18 +0200
commit4443c44e22a58b5cd2d2f16f9748648d5bd8a7e9 (patch)
tree2e42ab3a2a2c15269732aa51e397c3360b72de3b /plugins
parent3d5273454b79de0f6c9809cce5ed91f439a91e9f (diff)
downloadprosody-4443c44e22a58b5cd2d2f16f9748648d5bd8a7e9.tar.gz
prosody-4443c44e22a58b5cd2d2f16f9748648d5bd8a7e9.zip
mod_carbons: Explicitly carbon XEP-0353: Jingle Message Initiation
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_carbons.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/mod_carbons.lua b/plugins/mod_carbons.lua
index ccd16ad5..e0f0a711 100644
--- a/plugins/mod_carbons.lua
+++ b/plugins/mod_carbons.lua
@@ -55,6 +55,11 @@ local function should_copy(stanza, c2s, user_bare) --> boolean, reason: string
return true, "bounce";
end
+ if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then
+ -- XXX Experimental XEP stuck in Proposed for almost a year at the time of this comment
+ return true, "jingle call";
+ end
+
for archived in stanza:childtags("stanza-id", "urn:xmpp:sid:0") do
if archived and archived.attr.by == user_bare then
return true, "archived";