The reason for this patch is that the "TLS connection" message adds an
unnecessary, annoying, unskippable delay to _every_ mutt startup.
(Almost as if its intention was to _discourage_ TLS usage...)
if (!ssl_check_certificate (conn, ssldata))
return -1;
- /* L10N:
- %1$s is version (e.g. "TLSv1.2")
- %2$s is cipher_version (e.g. "TLSv1/SSLv3")
- %3$s is cipher_name (e.g. "ECDHE-RSA-AES128-GCM-SHA256") */
- mutt_message (_("%s connection using %s (%s)"),
- SSL_get_version(ssldata->ssl), SSL_get_cipher_version (ssldata->ssl), SSL_get_cipher_name (ssldata->ssl));
- mutt_sleep (0);
-
return 0;
}