Skip to content

Commit

Permalink
ctl_conversationsdb: ignore limits when rebuilding
Browse files Browse the repository at this point in the history
If we're already over the limits, that's not going to change
  • Loading branch information
brong committed Nov 4, 2023
1 parent 7631f5a commit 49cfa48
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions imap/ctl_conversationsdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,8 @@ static int build_cid_cb(const mbentry_t *mbentry,
r = mailbox_cacherecord(mailbox, &oldrecord);
if (r) goto done;

oldrecord.ignorelimits = 1;

r = message_update_conversations(cstate, mailbox, &oldrecord, NULL);
if (r) goto done;

Expand Down

0 comments on commit 49cfa48

Please sign in to comment.