]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-reply.c
test: add known broken for n_m_get_flag on closed db
[notmuch] / notmuch-reply.c
index 2c30f6f9c798ea33f20b5ef0c5fab3091ffc165d..ceb4f39bc587b7fe21a9ec04289f362cfbbba644 100644 (file)
@@ -65,8 +65,9 @@ format_part_reply (GMimeStream *stream, mime_node_t *node)
        GMimeContentDisposition *disposition = g_mime_object_get_content_disposition (node->part);
 
        if (g_mime_content_type_is_type (content_type, "application", "pgp-encrypted") ||
-           g_mime_content_type_is_type (content_type, "application", "pgp-signature")) {
-           /* Ignore PGP/MIME cruft parts */
+           g_mime_content_type_is_type (content_type, "application", "pgp-signature") ||
+           g_mime_content_type_is_type (content_type, "application", "pkcs7-mime")) {
+           /* Ignore PGP/MIME and S/MIME cruft parts */
        } else if (g_mime_content_type_is_type (content_type, "text", "*") &&
                   ! g_mime_content_type_is_type (content_type, "text", "html")) {
            show_text_part_content (node->part, stream, NOTMUCH_SHOW_TEXT_PART_REPLY);