X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=send.c;h=8309545c85211c987f68e8d938c9316a7f40f8fe;hp=d8fa359914f70745017632e7811a7ddb4825a116;hb=9ff4c5cafac6f3cda731034777f28ac5e71cc4fb;hpb=3d937534e7b1ee723f86594b5e4c64c95158a933 diff --git a/send.c b/send.c index d8fa359..8309545 100644 --- a/send.c +++ b/send.c @@ -16,6 +16,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ +#if HAVE_CONFIG_H +# include "config.h" +#endif + #include "mutt.h" #include "mutt_curses.h" #include "rfc2047.h" @@ -54,10 +58,16 @@ static void append_signature (FILE *f) FILE *tmpfp; pid_t thepid; + if (SignOffString) { + fprintf(f,"\n%s",SignOffString); + } + if (Signature && (tmpfp = mutt_open_read (Signature, &thepid))) { if (option (OPTSIGDASHES)) fputs ("\n-- \n", f); + else if (SignOffString) + fputs("\n",f); mutt_copy_stream (tmpfp, f); fclose (tmpfp); if (thepid != -1)