X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mx.h;h=60f7782e7047fda85c0af54ca0e371adf1e9a8eb;hp=74f02f107b2471b598c8b59532ef5758bc757bf6;hb=5fc6c3e42b91af11aa1323f6cfde4d27bbea9ec8;hpb=546433d312df43754962a34eac05fee84d73a455 diff --git a/mx.h b/mx.h index 74f02f1..60f7782 100644 --- a/mx.h +++ b/mx.h @@ -17,30 +17,24 @@ #ifndef _MX_H #define _MX_H -#include #include +#include "mutt.h" /* * supported mailbox formats * in mx_init() the registration order must be exactly as given here!!!1! */ enum { - M_MBOX = 1, - M_MMDF, - M_MH, - M_MAILDIR -#ifdef USE_IMAP - , M_IMAP -#endif -#ifdef USE_POP - , M_POP -#endif + M_MBOX = 1, + M_MMDF, + M_MH, + M_MAILDIR, + M_IMAP, + M_POP, #ifdef USE_NNTP - , M_NNTP -#endif -#ifdef USE_COMPRESSED - , M_COMPRESSED + M_NNTP, #endif + M_COMPRESSED }; enum { @@ -172,5 +166,6 @@ int mx_lock_file (const char *, int, int, int, int); int mx_unlock_file (const char *path, int fd, int dot); int mx_rebuild_cache (void); +void mutt_parse_mime_message (CONTEXT * ctx, HEADER *); #endif /* !_MX_H */