mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_mam: Only check for locally generated stanza-ids
Otherwise a message archived by a remote server would be incorrectly silently discarded. This should be safe from spoofing thanks to strip_stanza_id earlier in the event chain.
This commit is contained in:
parent
2937b1672b
commit
b430cda5c7
1 changed files with 5 additions and 2 deletions
|
@ -480,8 +480,11 @@ module:hook("pre-message/full", strip_stanza_id_after_other_events, -1);
|
|||
-- which would not be accurate because it has been archived.
|
||||
module:hook("message/offline/handle", function(event)
|
||||
local stanza = event.stanza;
|
||||
if stanza:get_child("stanza-id", xmlns_st_id) then
|
||||
return true;
|
||||
local user = event.username .. "@" .. host;
|
||||
for st_id in stanza:childtags("stanza-id", xmlns_st_id) do
|
||||
if st_id.attr.by == user then
|
||||
return true;
|
||||
end
|
||||
end
|
||||
end, -2);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue