mbox-sync-private.h revision e5c08648676d1989f6e70b95e5990c26b3e8b96b
#ifndef __MBOX_SYNC_PRIVATE_H
#define __MBOX_SYNC_PRIVATE_H
#include "mail-index.h"
struct mbox_flag_type {
char chr;
enum mail_flags flag;
};
enum header_position {
};
extern struct mbox_flag_type mbox_status_flags[];
extern struct mbox_flag_type mbox_xstatus_flags[];
struct mbox_sync_mail {
/* following variables have a bit overloaded functionality:
a) space <= 0 : offset points to beginning of headers. space is the
amount of space missing that is required to be able to rewrite
the headers
b) space > 0 : offset points to beginning of whitespace that can
be removed. space is the amount of data that can be removed from
there. note that the message may contain more whitespace
elsewhere. */
};
struct mbox_sync_mail_context {
struct mbox_sync_context *sync_ctx;
struct mbox_sync_mail mail;
unsigned int have_eoh:1;
unsigned int need_rewrite:1;
unsigned int no_partial_rewrite:1;
unsigned int seen_imapbase:1;
unsigned int pseudo:1;
unsigned int updated:1;
};
struct mbox_sync_context {
struct index_mailbox *ibox;
unsigned int lock_id;
int fd;
struct mail_index_sync_ctx *index_sync_ctx;
struct mail_index_view *sync_view;
struct mail_index_transaction *t;
const struct mail_index_header *hdr;
/* header state: */
/* mail state: */
struct mail_index_sync_rec sync_rec;
unsigned int dest_first_mail:1;
unsigned int seen_first_mail:1;
};
int sync_header, int lock);
struct mbox_sync_mail_context *ctx);
const struct mbox_sync_mail *mail);
#endif