Skip to content

Commit

Permalink
imap-send.c: remove struct store_conf
Browse files Browse the repository at this point in the history
It was never used.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed Jan 15, 2013
1 parent 75b24bd commit 2fbd211
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions imap-send.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,6 @@ typedef void *SSL;
#include <openssl/hmac.h>
#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 */
Expand All @@ -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 */
Expand Down

0 comments on commit 2fbd211

Please sign in to comment.