]> git.notmuchmail.org Git - notmuch/blobdiff - show-message.c
first attempt to fold the message nicely
[notmuch] / show-message.c
index 79b02e2fd2688294591122cb44e75a868ab5183e..784981b6b190166564cfd82c2114bb1b1c3ec9d1 100644 (file)
@@ -33,13 +33,6 @@ show_message_part (GMimeObject *part, int *part_count,
        int i;
 
        for (i = 0; i < g_mime_multipart_get_count (multipart); i++) {
-           if (GMIME_IS_MULTIPART_SIGNED (multipart)) {
-               /* Don't index the signature. */
-               if (i == 1)
-                   continue;
-               if (i > 1)
-                   fprintf (stderr, "Warning: Unexpected extra parts of mutlipart/signed. Continuing.\n");
-           }
            show_message_part (g_mime_multipart_get_part (multipart, i),
                               part_count, show_part);
        }