diff options
author | Kim Alvefur <zash@zash.se> | 2025-03-23 19:57:06 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2025-03-23 19:57:06 +0100 |
commit | 780b392d25ff067015f561fcb152bc01ac3ea650 (patch) | |
tree | 4087b010575a13629fa3641a32faae5b89196c85 | |
parent | 4068c2802356d92efb80a2b335568f9ebdfac219 (diff) | |
download | prosody-780b392d25ff067015f561fcb152bc01ac3ea650.tar.gz prosody-780b392d25ff067015f561fcb152bc01ac3ea650.zip |
doap: Add XEP-0334
-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 73c2c5da..b43c4154 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-0334.html"/> + <xmpp:version>1.0.0</xmpp:version> + <xmpp:since>0.10.0</xmpp:since> + <xmpp:status>complete</xmpp:status> + <xmpp:note>Used in mod_carbons, mod_mam, and mod_muc</xmpp:note> + </xmpp:SupportedXep> + </implements> + <implements> + <xmpp:SupportedXep> <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0352.html"/> <xmpp:version>1.0.0</xmpp:version> <xmpp:since>0.11.0</xmpp:since> diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index b57fc030..ddceb013 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -341,7 +341,6 @@ local function should_store(stanza) --> boolean, reason: string end if stanza:get_child("no-store", "urn:xmpp:hints") or stanza:get_child("no-permanent-store", "urn:xmpp:hints") then - -- XXX Experimental XEP return false, "hint"; end if stanza:get_child("store", "urn:xmpp:hints") then diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua index 005bd1d8..8d8fcf14 100644 --- a/plugins/muc/history.lib.lua +++ b/plugins/muc/history.lib.lua @@ -204,7 +204,6 @@ module:hook("muc-message-is-historic", function (event) local stanza = event.stanza; if stanza:get_child("no-store", "urn:xmpp:hints") or stanza:get_child("no-permanent-store", "urn:xmpp:hints") then - -- XXX Experimental XEP return false, "hint"; end if stanza:get_child("store", "urn:xmpp:hints") then |