/usr/include/dovecot/dbox-save.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #ifndef DBOX_SAVE_H
#define DBOX_SAVE_H
#include "dbox-storage.h"
struct dbox_save_context {
struct mail_save_context ctx;
struct mail_index_transaction *trans;
/* updated for each appended mail: */
uint32_t seq;
struct istream *input;
struct mail *mail;
struct ostream *dbox_output;
unsigned int failed:1;
unsigned int finished:1;
unsigned int have_pop3_uidls:1;
unsigned int have_pop3_orders:1;
};
void dbox_save_begin(struct dbox_save_context *ctx, struct istream *input);
int dbox_save_continue(struct mail_save_context *_ctx);
void dbox_save_end(struct dbox_save_context *ctx);
void dbox_save_write_metadata(struct mail_save_context *ctx,
struct ostream *output, uoff_t output_msg_size,
const char *orig_mailbox_name,
guid_128_t guid_128_r) ATTR_NULL(4);
void dbox_save_add_to_index(struct dbox_save_context *ctx);
void dbox_save_update_header_flags(struct dbox_save_context *ctx,
struct mail_index_view *sync_view,
uint32_t ext_id,
unsigned int flags_offset);
#endif
|