X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=sendlib.c;h=80fce14a272114444392211d59071e1b5dc62ce3;hb=6eb22b54ec44fd63bea311f472c9aadc7176c230;hp=86440dfd0a4e6b07b7a069a221947bc29302dc27;hpb=ace94418088f9165d23763bd39752cc31b406f03;p=apps%2Fmadmutt.git diff --git a/sendlib.c b/sendlib.c index 86440df..80fce14 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 @@ -1653,7 +1653,7 @@ static char *mutt_gen_msgid (void) return m_strdup(buf); } -static RETSIGTYPE alarm_handler (int sig __attribute__ ((unused))) +static void alarm_handler (int sig __attribute__ ((unused))) { SigAlrm = 1; } @@ -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"));