From: Thomas Roessler Date: Thu, 23 Jan 2003 22:01:03 +0000 (+0000) Subject: Automatically use the text/plain handler for text/* body parts which X-Git-Tag: mutt-1-5-4-rel~75 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb98e9c6d1d786791d54eb1b09c9e0d62861fbad;p=mutt Automatically use the text/plain handler for text/* body parts which don't have a handler of their own. --- diff --git a/handler.c b/handler.c index 6ca276f4..98d9190b 100644 --- a/handler.c +++ b/handler.c @@ -1766,7 +1766,7 @@ void mutt_body_handler (BODY *b, STATE *s) } else if (ascii_strcasecmp ("enriched", b->subtype) == 0) handler = text_enriched_handler; - else if (ascii_strcasecmp ("rfc822-headers", b->subtype) == 0) + else /* text body type without a handler */ plaintext = 1; } else if (b->type == TYPEMESSAGE)