comparison src/doveadm/dsync/dsync-mailbox.h @ 22715:20415dd0b85a

dsync: Add per-mailbox sync lock that is always used. Both importing and exporting gets the lock before they even sync the mailbox. The lock is kept until the import/export finishes. This guarantees that no matter how dsync is run, two dsyncs can't be working on the same mailbox at the same time. This lock is in addition to the optional per-user lock enabled by the -l parameter. If the -l parameter is used, the same lock timeout is used for the per-mailbox lock. Otherwise 30s timeout is used. This should help to avoid email duplication when replication is enabled for public namespaces, and maybe in some other rare situations as well.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 28 Dec 2017 14:10:23 +0200
parents 1f8b784712e1
children
comparison
equal deleted inserted replaced
22714:a34e1e7232f1 22715:20415dd0b85a
1 #ifndef DSYNC_MAILBOX_H 1 #ifndef DSYNC_MAILBOX_H
2 #define DSYNC_MAILBOX_H 2 #define DSYNC_MAILBOX_H
3 3
4 #include "mail-storage.h" 4 #include "mail-storage.h"
5
6 struct dsync_brain;
5 7
6 /* Mailbox that is going to be synced. Its name was already sent in the 8 /* Mailbox that is going to be synced. Its name was already sent in the
7 mailbox tree. */ 9 mailbox tree. */
8 struct dsync_mailbox { 10 struct dsync_mailbox {
9 guid_128_t mailbox_guid; 11 guid_128_t mailbox_guid;
34 36
35 void dsync_mailbox_attribute_dup(pool_t pool, 37 void dsync_mailbox_attribute_dup(pool_t pool,
36 const struct dsync_mailbox_attribute *src, 38 const struct dsync_mailbox_attribute *src,
37 struct dsync_mailbox_attribute *dest_r); 39 struct dsync_mailbox_attribute *dest_r);
38 40
41 int dsync_mailbox_lock(struct dsync_brain *brain, struct mailbox *box,
42 struct file_lock **lock_r);
43
39 #endif 44 #endif