about summary refs log tree commit diff
path: root/mshow.c
diff options
context:
space:
mode:
Diffstat (limited to 'mshow.c')
-rw-r--r--mshow.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mshow.c b/mshow.c
index b5cf64f..614b7d9 100644
--- a/mshow.c
+++ b/mshow.c
@@ -264,7 +264,8 @@ nofilter:
 		if (!Nflag)
 			printf(" ---\n");
 
-		if (strncmp(ct, "text/", 5) == 0) {
+		if (strncmp(ct, "text/", 5) == 0 ||
+		    strncmp(ct, "message/delivery-status", 23) == 0) {
 			char *charset = 0, *cs, *cse;
 			if (blaze822_mime_parameter(ct, "charset", &cs, &cse))
 				charset = strndup(cs, cse-cs);