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

webcit/messages.c

index b20186ba0646c72fc4ac6af1935a43919dbe8219..0bd29376e10ec7fcfc1388da126c22bda5d19de6 100644 (file)
@@ -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");