# HG changeset patch # User Kim Alvefur # Date 1588978662 -7200 # Node ID 30fc1ed5647a5d62717711695faf31b2a2a39589 # Parent e0a09d3af563066f8281690b99f9bd4bb964c560 mod_mam: Archive XEP-0353: Jingle Message Initiation diff -r e0a09d3af563 -r 30fc1ed5647a doc/doap.xml --- a/doc/doap.xml Sat May 09 00:55:18 2020 +0200 +++ b/doc/doap.xml Sat May 09 00:57:42 2020 +0200 @@ -512,7 +512,7 @@ 0.3 0.11.6 - triggers buffer flush in mod_csi_simple since 0.11.6; recognised by mod_carbons since 0.12 + triggers buffer flush in mod_csi_simple since 0.11.6; recognised by mod_carbons and mod_mam since 0.12 diff -r e0a09d3af563 -r 30fc1ed5647a plugins/mod_mam/mod_mam.lua --- a/plugins/mod_mam/mod_mam.lua Sat May 09 00:55:18 2020 +0200 +++ b/plugins/mod_mam/mod_mam.lua Sat May 09 00:57:42 2020 +0200 @@ -315,6 +315,10 @@ or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then return true, "invite"; 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 -- The IM-NG thing to do here would be to return `not st_to_full` -- One day ...