X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sendlib.c;h=450f543582f0a4207f3035ded8e47b093d81b6b5;hp=80790f45e045cd33576bf685db5d956e0ec40efe;hb=73677f50e434a5c17a0d2c444dc2559c6540170b;hpb=ba5e3af4ea19e1d20c80941c077039871ec84258 diff --git a/sendlib.c b/sendlib.c index 80790f4..450f543 100644 --- a/sendlib.c +++ b/sendlib.c @@ -14,6 +14,9 @@ #endif #include "mutt.h" +#include "ascii.h" +#include "handler.h" +#include "recvattach.h" #include "mutt_curses.h" #include "rfc2047.h" #include "rfc2231.h" @@ -802,7 +805,7 @@ CONTENT *mutt_get_content_info (const char *fname, BODY * b) CONTENT *info; CONTENT_STATE state; FILE *fp = NULL; - char *fromcode; + char *fromcode = NULL; char *tocode; char buffer[100]; char chsbuf[STRING]; @@ -1612,7 +1615,7 @@ int mutt_write_rfc822_header (FILE * fp, ENVELOPE * env, BODY * attach, } } /* Add a vanity header */ - fprintf (fp, "User-Agent: mutt-ng/%s (%s)\n", MUTT_VERSION, os); + fprintf (fp, "User-Agent: %s (%s)\n", mutt_make_version (0), os); } return (ferror (fp) == 0 ? 0 : -1); @@ -2076,7 +2079,7 @@ int mutt_invoke_mta (ADDRESS * from, /* the sender */ { /* message contains 8bit chars */ #ifdef USE_LIBESMTP if (SmtpHost) - return mutt_invoke_libesmtp (from, to, cc, bcc, msg, eightbit); + return mutt_libesmtp_invoke (from, to, cc, bcc, msg, eightbit); #endif return mutt_invoke_sendmail (from, to, cc, bcc, msg, eightbit);