}
}
- if (cmflags & M_CM_VERIFY || cur->security & ENCRYPT) {
- crypt_invoke_message(cur->security);
- }
-
res = _mutt_copy_message (fpout, msg->fp, cur, cur->content, cmflags,
(option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) |
CH_DECODE | CH_FROM);
}
}
-void crypt_invoke_message (int type)
-{
- if (type & APPLICATION_PGP) {
- mutt_message _("Invoking PGP...");
- }
- else if (type & APPLICATION_SMIME) {
- mutt_message _("Invoking S/MIME...");
- }
-}
-
int mutt_protect (HEADER * msg, char *keylist)
{
BODY *pbody = NULL, *tmp_pbody = NULL;
Return the list of keys in KEYLIST. */
int crypt_get_keys (HEADER * msg, char **keylist);
-
-/* Show a message that a backend will be invoked. */
-void crypt_invoke_message (int type);
-
/* Decrypt a PGP/MIME message. */
int crypt_pgp_decrypt_mime (FILE * a, FILE ** b, BODY * c, BODY ** d);