Will 2.3.20 be released ASAP with this fix?
Aki> This has now been fixed in main with
Aki> Aki
>>
>>
>> Please consider as critical (data loss) and recommend a warning is
>> issued for 2.3.19 users.
>>
>>
>> On 13/06/22 5:25 pm, Aki Tuomi wrote:
>> >>
>> >>
>> >>
>> >>
>> >> Hi,
>> >>
>> >> Looking at the code (and tested via local build from source) it looks
>> >> like doveadm deduplicate in 2.3.19 can cause significant data loss.
>> >>
>> >> A 2022-02-11 commit removed key duplication resulting in undefined
>> >> behaviour which is often truncation of a mailbox to 67 entries.
>> >> (HASH_TABLE_MIN_SIZE)
>> >>
>> >>
>> >> diff --git a/src/doveadm/doveadm-mail-deduplicate.c
>> >> b/src/doveadm/doveadm-mail-deduplicate.c
>> >>
>> >> index caec758112..2152482876 100644
>> >> --- a/src/doveadm/doveadm-mail-deduplicate.c
>> >> +++ b/src/doveadm/doveadm-mail-deduplicate.c
>> >> @@ -63,8 +63,10 @@ cmd_deduplicate_box(struct doveadm_mail_cmd_context
>> >> *_ctx,
>> >> if (key != NULL && *key != '\0') {
>> >> if (hash_table_lookup(hash, key) != NULL)
>> >> mail_expunge(mail);
>> >> - else
>> >> + else {
>> >> + key = p_strdup(pool, key);
>> >> hash_table_insert(hash, key,
>> >> POINTER_CAST(1));
>> >> + }
>> >> }
>> >> }
>> > Thank you both for the report, we'll look into this!
>> >
>> > Aki