mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
9bb75c85c4
commit
92150bd359
1 changed files with 3 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue