mod_mam: Advertise extended MAM when archive storage is capable
authorKim Alvefur <zash@zash.se>
Tue, 12 Jan 2021 19:25:29 +0100
changeset 11285 142fb655b885
parent 11284 e35e98541ca0
child 11286 cabb022f31c0
mod_mam: Advertise extended MAM when archive storage is capable
doc/doap.xml
plugins/mod_mam/mod_mam.lua
--- a/doc/doap.xml	Tue Jan 12 19:00:44 2021 +0100
+++ b/doc/doap.xml	Tue Jan 12 19:25:29 2021 +0100
@@ -569,7 +569,7 @@
       <xmpp:SupportedXep>
         <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0313.html"/>
         <xmpp:version>0.7.2</xmpp:version>
-        <xmpp:status>partial</xmpp:status>
+        <xmpp:status>complete</xmpp:status>
         <xmpp:since>0.10.0</xmpp:since>
         <xmpp:note>mod_mam, mod_muc_mam</xmpp:note>
       </xmpp:SupportedXep>
--- a/plugins/mod_mam/mod_mam.lua	Tue Jan 12 19:00:44 2021 +0100
+++ b/plugins/mod_mam/mod_mam.lua	Tue Jan 12 19:25:29 2021 +0100
@@ -567,8 +567,7 @@
 module:hook("message/bare", message_handler, 0);
 module:hook("message/full", message_handler, 0);
 
-local advertise_extended = module:get_option_boolean("mam_advertise_extend", false);
--- TODO delete feature flag option
+local advertise_extended = archive.caps and archive.caps.full_id_range and archive.caps.ids;
 
 module:hook("account-disco-info", function(event)
 	(event.reply or event.stanza):tag("feature", {var=xmlns_mam}):up();