diff options
author | Kim Alvefur <zash@zash.se> | 2025-03-23 19:59:45 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2025-03-23 19:59:45 +0100 |
commit | be51e54c680fd94303a5e8681fd5340503976f0b (patch) | |
tree | 890c4bcbfb1b0ee02ce8e8c7a88ab23a8949781e | |
parent | 780b392d25ff067015f561fcb152bc01ac3ea650 (diff) | |
download | prosody-be51e54c680fd94303a5e8681fd5340503976f0b.tar.gz prosody-be51e54c680fd94303a5e8681fd5340503976f0b.zip |
doap: Add XEP-0333
-rw-r--r-- | doc/doap.xml | 9 | ||||
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 1 | ||||
-rw-r--r-- | plugins/muc/history.lib.lua | 1 |
3 files changed, 9 insertions, 2 deletions
diff --git a/doc/doap.xml b/doc/doap.xml index b43c4154..79bf8a2e 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -726,6 +726,15 @@ </implements> <implements> <xmpp:SupportedXep> + <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0333.html"/> + <xmpp:version>1.0.0</xmpp:version> + <xmpp:since>0.10.0</xmpp:since> + <xmpp:status>partial</xmpp:status> + <xmpp:note>Used in mod_mam and mod_muc</xmpp:note> + </xmpp:SupportedXep> + </implements> + <implements> + <xmpp:SupportedXep> <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0334.html"/> <xmpp:version>1.0.0</xmpp:version> <xmpp:since>0.10.0</xmpp:since> diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index ddceb013..4eb49819 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -364,7 +364,6 @@ local function should_store(stanza) --> boolean, reason: string return true, "receipt"; end if stanza:get_child(nil, "urn:xmpp:chat-markers:0") then - -- XXX Experimental XEP return true, "marker"; end if stanza:get_child("x", "jabber:x:conference") diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua index 8d8fcf14..f85decfb 100644 --- a/plugins/muc/history.lib.lua +++ b/plugins/muc/history.lib.lua @@ -218,7 +218,6 @@ module:hook("muc-message-is-historic", function (event) return true, "encrypted"; end if stanza:get_child(nil, "urn:xmpp:chat-markers:0") then - -- XXX Experimental XEP return true, "marker"; end end, -1); |