blob: d6031a240b16a6a6fddc53a978ccbfa7656498bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef FAIL_MAIL_STORAGE_H
#define FAIL_MAIL_STORAGE_H
extern struct mail_storage fail_storage;
extern struct mailbox fail_mailbox;
extern struct mail_vfuncs fail_mail_vfuncs;
struct mail_storage *fail_mail_storage_create(void);
struct mailbox *
fail_mailbox_alloc(struct mail_storage *storage, struct mailbox_list *list,
const char *vname, enum mailbox_flags flags);
struct mail *
fail_mailbox_mail_alloc(struct mailbox_transaction_context *t,
enum mail_fetch_field wanted_fields,
struct mailbox_header_lookup_ctx *wanted_headers);
#endif
|