X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=mutt.h;h=dda0aaab89dfcb8ae6857520f8c7ca0664418240;hb=67b2c8d6719bccd621e47b59cb89b9e2cb97d4f5;hp=6a6b036f9f98f0713a27414c8d00a593b2b2d65a;hpb=d279a20c49265b2595ffab0b68b67e601330a602;p=apps%2Fmadmutt.git diff --git a/mutt.h b/mutt.h index 6a6b036..dda0aaa 100644 --- a/mutt.h +++ b/mutt.h @@ -158,6 +158,11 @@ typedef enum #define M_CRYPTHOOK (1<<8) #define M_ACCOUNTHOOK (1<<9) #define M_REPLYHOOK (1<<10) +#ifdef USE_COMPRESSED +#define M_OPENHOOK (1<<12) +#define M_APPENDHOOK (1<<13) +#define M_CLOSEHOOK (1<<14) +#endif /* tree characters for linearize_tree and print_enriched_string */ #define M_TREE_LLCORNER 1 @@ -446,6 +451,7 @@ enum OPTWRAP, OPTWRAPSEARCH, OPTWRITEBCC, /* write out a bcc header? */ + OPTXFACE, OPTXMAILER, OPTXTERMSETTITLES, @@ -598,6 +604,7 @@ typedef struct envelope #endif LIST *references; /* message references (in reverse order) */ LIST *in_reply_to; /* in-reply-to header content */ + LIST *x_face; /* X-Face header content */ LIST *userhdrs; /* user defined headers */ } ENVELOPE; @@ -833,6 +840,11 @@ typedef struct short magic; /* mailbox type */ +#ifdef USE_COMPRESSED + void *compressinfo; /* compressed mbox module private data */ + char *realpath; /* path to compressed mailbox */ +#endif /* USE_COMPRESSED */ + unsigned int locked : 1; /* is the mailbox locked? */ unsigned int changed : 1; /* mailbox has been modified */ unsigned int readonly : 1; /* don't allow changes to the mailbox */