always build mutt with pgp + smime support.
[apps/madmutt.git] / muttlib.c
index 73b2e5e..0bf733c 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -542,9 +542,9 @@ int mutt_needs_mailcap (BODY * m)
     break;
 
   case TYPEAPPLICATION:
     break;
 
   case TYPEAPPLICATION:
-    if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (m))
+    if (mutt_is_application_pgp (m))
       return 0;
       return 0;
-    if ((WithCrypto & APPLICATION_SMIME) && mutt_is_application_smime (m))
+    if (mutt_is_application_smime (m))
       return 0;
     break;
 
       return 0;
     break;
 
@@ -561,7 +561,7 @@ int mutt_is_text_part (BODY * b)
   int t = b->type;
   char *s = b->subtype;
 
   int t = b->type;
   char *s = b->subtype;
 
-  if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b))
+  if (mutt_is_application_pgp (b))
     return 0;
 
   if (t == TYPETEXT)
     return 0;
 
   if (t == TYPETEXT)
@@ -572,7 +572,7 @@ int mutt_is_text_part (BODY * b)
       return 1;
   }
 
       return 1;
   }
 
-  if ((WithCrypto & APPLICATION_PGP) && t == TYPEAPPLICATION) {
+  if (t == TYPEAPPLICATION) {
     if (!ascii_strcasecmp ("pgp-keys", s))
       return 1;
   }
     if (!ascii_strcasecmp ("pgp-keys", s))
       return 1;
   }