You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
force-resync currently uses B attribute to determine if a mail belongs to a certain mailbox if the index file no longer exist.
In case we repair a mailbox "INBOX" and have mails with the same UID (sample data) in different mailboxes.
The force-resync process will fail if we delete the index file in INBOX folder and start the resync. This is due to the fact that we are currently using the original UID (restored from mails xattribute) for the new index entry.
in case the index has been deleted, and user tries to repair the mailbox
the original mailbox name stored in attribute 'B' is used to group
objects into a mailbox. This could lead to redundant uids (e.g. through
copying / moving mails without update of the 'B' attribute). In this
case the uids is generated starting from 1 and all mails with the given
mailbox name ('B') are added to the mailbox.
force-resync currently uses B attribute to determine if a mail belongs to a certain mailbox if the index file no longer exist.
In case we repair a mailbox "INBOX" and have mails with the same UID (sample data) in different mailboxes.
The force-resync process will fail if we delete the index file in INBOX folder and start the resync. This is due to the fact that we are currently using the original UID (restored from mails xattribute) for the new index entry.
sample date:
MAILBOX: M(mailbox_guid)=ccbe6c2f6683065b127800009c60b9f7
B(mailbox_orig_name)=INBOX
mail_total=1, mails_displayed=1
mailbox_size=754 bytes
MAILBOX: M(mailbox_guid)=ccbe6c2f6683065b127800009c60abc9
B(mailbox_orig_name)=INBOX
mail_total=1, mails_displayed=1
mailbox_size=754 bytes
=> generate new uid instead of using the old entry.
The text was updated successfully, but these errors were encountered: