]> git.notmuchmail.org Git - notmuch/blobdiff - show-message.c
README: Mention that notmuch only supports maildir or mh format.
[notmuch] / show-message.c
index 38f5897aac75ca6cf6673e982d5fab41d90ea70d..05ced9c421c5ec780563312765ea43fa2a5f87df 100644 (file)
@@ -26,20 +26,11 @@ static void
 show_message_part (GMimeObject *part, int *part_count,
                   void (*show_part) (GMimeObject *part, int *part_count))
 {
-    *part_count = *part_count + 1;
-
     if (GMIME_IS_MULTIPART (part)) {
        GMimeMultipart *multipart = GMIME_MULTIPART (part);
        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 multipart/signed. Continuing.\n");
-           }
            show_message_part (g_mime_multipart_get_part (multipart, i),
                               part_count, show_part);
        }
@@ -63,6 +54,8 @@ show_message_part (GMimeObject *part, int *part_count,
        return;
     }
 
+    *part_count = *part_count + 1;
+
     (*show_part) (part, part_count);
 }