mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_mam: Don't store any groupchat messages
The intent was to not store MUC groupchat messages, which are sent from the MUC to local full JIDs, while allowing for potential future account based group chat. However, since this function handles messages in both directions and outgoing MUC messages are sent to the bare room JID, those were stored.
This commit is contained in:
parent
d649e78d6d
commit
ba452d6923
1 changed files with 3 additions and 1 deletions
|
@ -269,6 +269,8 @@ local function should_store(stanza) --> boolean, reason: string
|
|||
if st_type == "error" then
|
||||
st_to_full = (stanza.attr.from or ""):find("/");
|
||||
end
|
||||
-- FIXME pass direction of stanza and use that along with bare/full JID addressing
|
||||
-- for more accurate MUC / type=groupchat check
|
||||
|
||||
if st_type == "headline" then
|
||||
-- Headline messages are ephemeral by definition
|
||||
|
@ -277,7 +279,7 @@ local function should_store(stanza) --> boolean, reason: string
|
|||
if st_type == "error" then
|
||||
return true, "bounce";
|
||||
end
|
||||
if st_type == "groupchat" and st_to_full then
|
||||
if st_type == "groupchat" then
|
||||
-- MUC messages always go to the full JID, usually archived by the MUC
|
||||
return false, "groupchat";
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue