Changeset 5437:48e90b82a4ee for handler.c
Legend:
- Unmodified
- Added
- Removed
-
handler.c
r5429 r5437 1580 1580 else if (WithCrypto && b->type == TYPEAPPLICATION) 1581 1581 { 1582 if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b)) 1582 if (option (OPTDONTHANDLEPGPKEYS) 1583 && !ascii_strcasecmp("pgp-keys", b->subtype)) 1584 { 1585 /* pass raw part through for key extraction */ 1586 plaintext = 1; 1587 } 1588 else if ((WithCrypto & APPLICATION_PGP) && mutt_is_application_pgp (b)) 1583 1589 handler = crypt_pgp_application_pgp_handler; 1584 if ((WithCrypto & APPLICATION_SMIME) && mutt_is_application_smime(b))1590 else if ((WithCrypto & APPLICATION_SMIME) && mutt_is_application_smime(b)) 1585 1591 handler = crypt_smime_application_smime_handler; 1586 1592 }
