mbox-sync-private.h revision bfa7ef85a07f07b7d2e72471a584689cfb6adc31
#ifndef MBOX_SYNC_PRIVATE_H
#define MBOX_SYNC_PRIVATE_H
#include "md5.h"
#include "mail-index.h"
enum mbox_sync_flags {
MBOX_SYNC_HEADER = 0x02,
MBOX_SYNC_LOCK_READING = 0x04,
MBOX_SYNC_UNDIRTY = 0x08,
MBOX_SYNC_REWRITE = 0x10,
MBOX_SYNC_FORCE_SYNC = 0x20,
MBOX_SYNC_READONLY = 0x40
};
struct mbox_flag_type {
char chr;
enum mail_flags flag;
};
enum header_position {
};
/* kludgy. swap MAIL_RECENT with MBOX_NONRECENT_KLUDGE when writing Status
header, because 'O' flag means non-recent but internally we want to use
recent flag. */
#define MBOX_NONRECENT_KLUDGE MAIL_RECENT
extern struct mbox_flag_type mbox_status_flags[];
extern struct mbox_flag_type mbox_xstatus_flags[];
struct mbox_sync_mail {
/* uid=0 can mean that this mail describes an expunged area or that
this is a pseudo message */
unsigned int uid_broken:1;
unsigned int expunged:1;
unsigned int pseudo:1;
/* 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 char hdr_md5_sum[16];
unsigned int last_uid_value_start_pos;
unsigned int have_eoh:1;
unsigned int need_rewrite:1;
unsigned int seen_imapbase:1;
unsigned int updated:1;
unsigned int recent:1;
unsigned int dirty:1;
unsigned int imapbase_rewrite:1;
unsigned int imapbase_updated:1;
};
struct mbox_sync_context {
struct mbox_mailbox *mbox;
enum mbox_sync_flags flags;
int write_fd;
struct mail_index_sync_ctx *index_sync_ctx;
struct mail_index_view *sync_view;
struct mail_index_transaction *t;
struct mail_index_header reset_hdr;
const struct mail_index_header *hdr;
/* header state: */
/* mail state: */
struct index_sync_changes_context *sync_changes;
/* per-mail pool */
/* used for mails[].keywords */
unsigned int dest_first_mail:1;
unsigned int first_mail_crlf_expunged:1;
/* global flags: */
unsigned int keep_recent:1;
unsigned int readonly:1;
unsigned int delay_writes:1;
unsigned int renumber_uids:1;
unsigned int moved_offsets:1;
unsigned int ext_modified:1;
unsigned int index_reset:1;
unsigned int errors:1;
};
bool *empty_r);
struct mbox_sync_mail_context *ctx);
const struct mbox_sync_mail *mail);
struct mbox_sync_mail_context *mail_ctx,
#endif