From: Michael Haggerty Date: Tue, 15 Jan 2013 08:06:22 +0000 (+0100) Subject: imap-send.c: remove struct store_conf X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2fbd21174605281b263781ba6944a4354e4ee0eb;p=git.git imap-send.c: remove struct store_conf It was never used. Signed-off-by: Michael Haggerty Reviewed-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/imap-send.c b/imap-send.c index dbe054620..b8a7ff97e 100644 --- a/imap-send.c +++ b/imap-send.c @@ -33,15 +33,6 @@ typedef void *SSL; #include #endif -struct store_conf { - char *name; - const char *path; /* should this be here? its interpretation is driver-specific */ - char *map_inbox; - char *trash; - unsigned max_size; /* off_t is overkill */ - unsigned trash_remote_new:1, trash_only_new:1; -}; - /* For message->status */ #define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */ #define M_DEAD (1<<1) /* expunged */ @@ -55,8 +46,6 @@ struct message { }; struct store { - struct store_conf *conf; /* foreign */ - /* currently open mailbox */ const char *name; /* foreign! maybe preset? */ char *path; /* own */