From 20de5f297e486febdf389c578a9d44189c3b8ca4 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 25 Jun 2020 18:01:38 +0200 Subject: mod_mam: "Handle" messages that have been archived in the absense of mod_offline --- plugins/mod_mam/mod_mam.lua | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'plugins/mod_mam/mod_mam.lua') diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 1b5c926c..92d45411 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -474,6 +474,13 @@ end module:hook("pre-message/bare", strip_stanza_id_after_other_events, -1); module:hook("pre-message/full", strip_stanza_id_after_other_events, -1); +module:hook("message/offline/handle", function(event) + local stanza = event.stanza; + if stanza:get_child("stanza-id", xmlns_st_id) then + return true; + end +end, -2); + if cleanup_after ~= "never" then local cleanup_storage = module:open_store("archive_cleanup"); local cleanup_map = module:open_store("archive_cleanup", "map"); -- cgit v1.2.3