X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_libesmtp.c;h=6263662744150300f12feef62166443a74f540e5;hp=a7f65cef23428f00f8ebc9ede4fd7256cbc0c354;hb=9ed6c0f86855d82f8b95b3f623bf2639f0f19d0b;hpb=e4ebc9b0ae5de07d53d8b0ecf594244e1bc44d0a diff --git a/mutt_libesmtp.c b/mutt_libesmtp.c index a7f65ce..6263662 100644 --- a/mutt_libesmtp.c +++ b/mutt_libesmtp.c @@ -174,14 +174,16 @@ static const char *_mutt_libesmtp_messagefp_cb (void **buf, int *len, return *buf; } -#if defined (USE_SSL) || (defined (USE_GNUTLS) && defined (HAVE_GNUTLS_OPENSSL_H)) static int handle_invalid_peer_certificate (long vfy_result) { +#if defined (USE_SSL) || (defined (USE_GNUTLS) && defined (HAVE_GNUTLS_OPENSSL_H)) mutt_error (_("Error verifying certificate: %s"), NONULL (X509_verify_cert_error_string (vfy_result))); +#else + mutt_error (_("Error verifying certificate. Error Code: %lu"), vfy_result); +#endif sleep(2); return 1; /* Accept the problem */ } -#endif static void event_cb (smtp_session_t session, int event_no, void *arg,...) { @@ -356,8 +358,8 @@ int mutt_libesmtp_invoke (ADDRESS * from, /* the sender */ SMTPFAIL ("smtp_add_message"); /* Initialize envelope sender */ - if (SmtpEnvFrom && *SmtpEnvFrom) - envfrom = SmtpEnvFrom; + if (option (OPTENVFROM) && EnvFrom) + envfrom = EnvFrom->mailbox; if (!smtp_set_reverse_path (message, envfrom)) SMTPFAIL ("smtp_set_reverse_path"); @@ -395,7 +397,7 @@ Done: if (fp != NULL) fclose (fp); if (hostportstr != NULL) - free (hostportstr); + mem_free (&hostportstr); if (session != NULL) smtp_destroy_session (session); if (authctx != NULL)