fix message composing
authorWilfried Goesgens <dothebart@citadel.org>
Sat, 14 May 2011 14:01:36 +0000 (14:01 +0000)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 20:40:42 +0000 (20:40 +0000)
   - when composing the text/plain downmix mimepart we forgot to add a linefeed.

webcit/messages.c

index 231d98eef54d9c3a4d8479fab8f310618d2994a1..94968338888761f68e8033e224acd73fa5e1b687 100644 (file)
@@ -941,7 +941,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");