X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sendlib.c;h=b79d3c175a162dc8edc1ac4ee88d4cd59cc688a6;hp=328aa2b59889f63269b8d27fe0478c90e5c861ee;hb=6667c0de1d217f130bf3a448a9744ed8b2d81f4b;hpb=576172ff50f9dd94dd2f5cc91d247c1e50dbe7fc diff --git a/sendlib.c b/sendlib.c index 328aa2b..b79d3c1 100644 --- a/sendlib.c +++ b/sendlib.c @@ -26,7 +26,7 @@ #include "pager.h" #include "charset.h" #include "mutt_idna.h" -#include "mutt_libesmtp.h" +#include "send_smtp.h" #ifdef USE_NNTP #include @@ -1907,8 +1907,7 @@ static int mutt_invoke_sendmail (address_t * from, /* the sender */ struct stat st; if (!stat(childout, &st) && st.st_size > 0) - mutt_do_pager(_("Output of the delivery process"), childout, 0, - NULL); + mutt_pager(_("Output of the delivery process"), childout, 0, NULL); } } } else { @@ -1938,7 +1937,7 @@ int mutt_invoke_mta (address_t * from, /* the sender */ if (!option (OPTNEWSSEND)) #endif if (SmtpHost) - return mutt_libesmtp_invoke (from, to, cc, bcc, msg, eightbit); + return send_smtp_invoke (from, to, cc, bcc, msg, eightbit); #endif return mutt_invoke_sendmail (from, to, cc, bcc, msg, eightbit);