X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sendlib.c;h=5ff0da1d6cda0a7b0a95a66a7bbe2bcf75057b9a;hp=86440dfd0a4e6b07b7a069a221947bc29302dc27;hb=3bb9d26e7eb111656d716e34d81225dfb16b6c4b;hpb=ace94418088f9165d23763bd39752cc31b406f03 diff --git a/sendlib.c b/sendlib.c index 86440df..5ff0da1 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 @@ -1937,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); @@ -2109,7 +2109,7 @@ int mutt_write_fcc (const char *path, HEADER * hdr, const char *msgid, /* We need to add a Content-Length field to avoid problems where a line in * the message body begins with "From " */ - if (f.magic == M_MMDF || f.magic == M_MBOX) { + if (f.magic == M_MBOX) { tempfp = m_tempfile(tempfile, sizeof(tempfile), NONULL(MCore.tmpdir), NULL); if (!tempfp) { mutt_error(_("Could not create temporary file"));