about summary refs log tree commit diff
path: root/mshow.c
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-09-06 18:38:42 +0200
committerLeah Neukirchen <leah@vuxu.org>2017-09-06 18:38:42 +0200
commit285671f0e2cf186cd6a1401df015fab03e7b7450 (patch)
tree9f9c56546ad8b6292ac33e03a44be9a0ad14cb6d /mshow.c
parent34066eec642ba8a5b88fd3a722ff42d78529e3f4 (diff)
downloadmblaze-285671f0e2cf186cd6a1401df015fab03e7b7450.tar.gz
mblaze-285671f0e2cf186cd6a1401df015fab03e7b7450.tar.xz
mblaze-285671f0e2cf186cd6a1401df015fab03e7b7450.zip
mshow: show: treat non-mime mails as single-part text/plain mails
Diffstat (limited to 'mshow.c')
-rw-r--r--mshow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mshow.c b/mshow.c
index d71fe44..e37e7fe 100644
--- a/mshow.c
+++ b/mshow.c
@@ -709,7 +709,7 @@ show(char *file)
 
 	printf("\n");
 
-	if (rflag || !blaze822_check_mime(msg)) {  // raw body
+	if (rflag) {  // raw body
 		print_ascii(blaze822_body(msg), blaze822_bodylen(msg));
 		goto done;
 	}