mbox-sync-private.h revision 84e1634acc701d14e358e27f1beff5ad74f5004a
#ifndef __MBOX_SYNC_PRIVATE_H
#define __MBOX_SYNC_PRIVATE_H
#include "md5.h"
#include "mail-index.h"
enum mbox_sync_flags {
MBOX_SYNC_LAST_COMMIT = 0x01,
MBOX_SYNC_HEADER = 0x02,
MBOX_SYNC_LOCK_READING = 0x04,
MBOX_SYNC_UNDIRTY = 0x08,
MBOX_SYNC_REWRITE = 0x10
};
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
#define MBOX_EXPUNGED 0x40
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 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 pseudo:1;
unsigned int updated:1;
unsigned int recent:1;
unsigned int dirty:1;
unsigned int uid_broken:1;
unsigned int imapbase_rewrite:1;
};
struct mbox_sync_context {
struct index_mailbox *ibox;
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;
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 sync_restart:1;
/* global flags: */
unsigned int delay_writes:1;
};
struct mbox_sync_mail_context *ctx);
const struct mbox_sync_mail *mail);
struct mbox_sync_mail *mail,
int *keywords_changed_r);
#endif