mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_mam: Add more positive hints for storage
Mostly just lifted from mod_csi_simple
This commit is contained in:
parent
0613c5b47f
commit
e84179de98
1 changed files with 12 additions and 0 deletions
|
@ -284,6 +284,18 @@ local function should_store(stanza) --> boolean, reason: string
|
|||
if stanza:get_child("body") then
|
||||
return true, "body";
|
||||
end
|
||||
if stanza:get_child("subject") then
|
||||
-- XXX Who would send a message with a subject but with a body?
|
||||
return true, "subject";
|
||||
end
|
||||
if stanza:get_child("encryption", "urn:xmpp:eme:0") then
|
||||
-- Since we can't know what an encrypted message contains, we assume it's important
|
||||
return true, "encrypted";
|
||||
end
|
||||
if stanza:get_child("x", "jabber:x:conference")
|
||||
or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then
|
||||
return true, "invite";
|
||||
end
|
||||
|
||||
return true, "default";
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue