From 49cfa4803d9a78ffc17ea3580b88b84061aa06f0 Mon Sep 17 00:00:00 2001 From: Bron Gondwana Date: Wed, 1 Nov 2023 16:38:16 -0400 Subject: [PATCH] ctl_conversationsdb: ignore limits when rebuilding If we're already over the limits, that's not going to change --- imap/ctl_conversationsdb.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/imap/ctl_conversationsdb.c b/imap/ctl_conversationsdb.c index 5b8534235b..61c109afd2 100644 --- a/imap/ctl_conversationsdb.c +++ b/imap/ctl_conversationsdb.c @@ -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;