mod_mam: Save delivery failures (thanks Ge0rG)

Makes it possible to learn of delivery failure even if it came bouncing
back while you were offline.
This commit is contained in:
Kim Alvefur 2020-04-22 18:50:30 +02:00
parent 9bb75c85c4
commit 92150bd359

View file

@ -274,6 +274,9 @@ local function should_store(stanza) --> boolean, reason: string
-- Headline messages are ephemeral by definition
return false, "headline";
end
if st_type == "error" then
return true, "bounce";
end
if st_type == "groupchat" and st_to_full then
-- MUC messages always go to the full JID, usually archived by the MUC
return false, "groupchat";