X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_libesmtp.c;h=a7f65cef23428f00f8ebc9ede4fd7256cbc0c354;hp=7b3ada3b1da89cd622cbec5b31b395a74717b9d1;hb=69bd7df1ce9e5c6a64b5128f85c1f91912d2f510;hpb=07449b789713bd8716a02214f536dfd72f3549b1 diff --git a/mutt_libesmtp.c b/mutt_libesmtp.c index 7b3ada3..a7f65ce 100644 --- a/mutt_libesmtp.c +++ b/mutt_libesmtp.c @@ -280,10 +280,17 @@ static void do_dsn_ret (smtp_message_t message) { } #if defined (USE_LIBESMTP) && (defined (USE_SSL) || defined (USE_GNUTLS)) -int mutt_libesmtp_check_usetls (const char* val) { +int mutt_libesmtp_check_usetls (const char* option, unsigned long p, + char* errbuf, size_t errlen) { + char* val = (char*) p; + if (!val || !*val) + return (1); if (str_ncmp (val, "enabled", 7) != 0 && - str_ncmp (val, "required", 8) != 0) + str_ncmp (val, "required", 8) != 0) { + if (errbuf) + snprintf (errbuf, errlen, _("'%s' is invalid for %s"), val, option); return (0); + } return (1); } #endif