mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_mam: Store XEP-0184 receipts and requests
Happy now Ge0rG?
This commit is contained in:
parent
e84179de98
commit
c8db26be66
1 changed files with 5 additions and 0 deletions
|
@ -292,6 +292,11 @@ local function should_store(stanza) --> boolean, reason: string
|
|||
-- Since we can't know what an encrypted message contains, we assume it's important
|
||||
return true, "encrypted";
|
||||
end
|
||||
if stanza:get_child(nil, "urn:xmpp:receipts") then
|
||||
-- If it's important enough to ask for a receipt then it's important enough to archive
|
||||
-- and the same applies to the receipt
|
||||
return true, "receipt";
|
||||
end
|
||||
if stanza:get_child("x", "jabber:x:conference")
|
||||
or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then
|
||||
return true, "invite";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue