From: Wilfried Goesgens Date: Sat, 14 May 2011 14:01:36 +0000 (+0000) Subject: fix message composing X-Git-Tag: v7.87~19 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=efd0c022f16e2daa33dd6acfb26b465bdf2402f6 fix message composing - when composing the text/plain downmix mimepart we forgot to add a linefeed. --- diff --git a/webcit/messages.c b/webcit/messages.c index b20186ba0..0bd29376e 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -919,7 +919,7 @@ void post_mime_to_server(void) { text_to_server_qp(txtmail); /* Transmit message in quoted-printable encoding */ free(txtmail); - serv_printf("--%s", alt_boundary); + serv_printf("\n--%s", alt_boundary); } serv_puts("Content-type: text/html; charset=utf-8");