mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_mam: Handle expiry of messages that expire in the middle of the cut-off day
This commit is contained in:
parent
2ac6994955
commit
bdfc36fc8c
1 changed files with 6 additions and 2 deletions
|
@ -358,14 +358,18 @@ if cleanup_after ~= "never" then
|
|||
local users = {};
|
||||
local cut_off = datestamp(os.time() - cleanup_after);
|
||||
for date in cleanup_storage:users() do
|
||||
if date < cut_off then
|
||||
if date <= cut_off then
|
||||
module:log("debug", "Messages from %q should be expired", date);
|
||||
local messages_this_day = cleanup_storage:get(date);
|
||||
if messages_this_day then
|
||||
for user in pairs(messages_this_day) do
|
||||
users[user] = true;
|
||||
end
|
||||
cleanup_storage:set(date, nil);
|
||||
if date < cut_off then
|
||||
-- Messages from the same day as the cut-off might not have expired yet,
|
||||
-- but all earlier will have, so clear storage for those days.
|
||||
cleanup_storage:set(date, nil);
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue