mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_mam: "Handle" messages that have been archived in the absense of mod_offline
This commit is contained in:
parent
1c81e40b20
commit
20de5f297e
1 changed files with 7 additions and 0 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue