X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mime%2Fmime.c;h=43ccfd3831b58dfe6475ef7ac036da9dfc9e59e2;hp=4353e4df5c9e820793085930dc33b275447b54a9;hb=688ac22f746f785c27ac99ac86aa85a3035a3638;hpb=774b53097f8c8b62c5101bce8f313d339387a438 diff --git a/lib-mime/mime.c b/lib-mime/mime.c index 4353e4d..43ccfd3 100644 --- a/lib-mime/mime.c +++ b/lib-mime/mime.c @@ -22,8 +22,7 @@ * Copyright (C) 1999-2000 Thomas Roessler */ -#include -#include +#include #include "mime.h" @@ -202,9 +201,7 @@ void header_wipe(HEADER *h) p_delete(&h->maildir_flags); p_delete(&h->tree); p_delete(&h->path); -#ifdef MIXMASTER string_list_wipe(&h->chain); -#endif p_delete(&h->data); } @@ -213,6 +210,17 @@ void header_wipe(HEADER *h) /* misc functions */ /****************************************************************************/ +int mutt_is_message_type(BODY *b) +{ + int tok; + + if (b->type != TYPEMESSAGE) + return 0; + + tok = mime_which_token(b->subtype, -1); + return tok == MIME_RFC822 || tok == MIME_NEWS; +} + int mutt_is_text_part(BODY * b) { char *s = b->subtype;