proxy-mailbox.h revision ba6c1d5d6227dc42cb08c59c8bfc93c2964552f2
#ifndef __PROXY_MAILBOX_H
#define __PROXY_MAILBOX_H
#include "mail-storage.h"
struct proxy_mailbox {
struct mailbox proxy_box;
struct mailbox *box;
};
void proxy_mailbox_init(struct proxy_mailbox *proxy, struct mailbox *box);
#endif