mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_mam: Archive XEP-0353: Jingle Message Initiation
This commit is contained in:
parent
4443c44e22
commit
1f8daf736d
2 changed files with 5 additions and 1 deletions
|
@ -512,7 +512,7 @@
|
||||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0353.html"/>
|
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0353.html"/>
|
||||||
<xmpp:version>0.3</xmpp:version>
|
<xmpp:version>0.3</xmpp:version>
|
||||||
<xmpp:since>0.11.6</xmpp:since>
|
<xmpp:since>0.11.6</xmpp:since>
|
||||||
<xmpp:note>triggers buffer flush in mod_csi_simple since 0.11.6; recognised by mod_carbons since 0.12</xmpp:note>
|
<xmpp:note>triggers buffer flush in mod_csi_simple since 0.11.6; recognised by mod_carbons and mod_mam since 0.12</xmpp:note>
|
||||||
</xmpp:SupportedXep>
|
</xmpp:SupportedXep>
|
||||||
</implements>
|
</implements>
|
||||||
<implements>
|
<implements>
|
||||||
|
|
|
@ -315,6 +315,10 @@ local function should_store(stanza, c2s) --> boolean, reason: string
|
||||||
or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then
|
or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then
|
||||||
return true, "invite";
|
return true, "invite";
|
||||||
end
|
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`
|
-- The IM-NG thing to do here would be to return `not st_to_full`
|
||||||
-- One day ...
|
-- One day ...
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue