#ifndef DSYNC_MAILBOX_H
#define DSYNC_MAILBOX_H
#include "mail-storage.h"
struct dsync_brain;
/* Mailbox that is going to be synced. Its name was already sent in the
mailbox tree. */
struct dsync_mailbox {
bool mailbox_lost;
bool mailbox_ignore;
};
struct dsync_mailbox_attribute {
const char *key;
/* if both values are NULL = not looked up yet / deleted */
const char *value;
};
const struct dsync_mailbox_attribute *src,
struct dsync_mailbox_attribute *dest_r);
#endif