Older GPGMEs are missing CMS (S/MIME) support. Don't force the poor
users to hit enter every time they start mutt.
if (gpgme_engine_check_version (GPGME_PROTOCOL_OpenPGP) != GPG_ERR_NO_ERROR)
{
mutt_error (_("GPGME: OpenPGP protocol not available"));
- if (mutt_any_key_to_continue (NULL) == -1)
- mutt_exit(1);
}
}
if (gpgme_engine_check_version (GPGME_PROTOCOL_CMS) != GPG_ERR_NO_ERROR)
{
mutt_error (_("GPGME: CMS protocol not available"));
- if (mutt_any_key_to_continue (NULL) == -1)
- mutt_exit(1);
}
}