diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-28 16:39:21 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-28 16:39:21 +0000 |
commit | adf54c77a7f32ec1e17f7d400a85ebcf08eb5321 (patch) | |
tree | 0657df88521191694b1fbfe596cd45ef55ddb038 | |
parent | 6488fe818faa1b582580e7a2cabbf73b523f1400 (diff) | |
download | fetchmail-adf54c77a7f32ec1e17f7d400a85ebcf08eb5321.tar.gz fetchmail-adf54c77a7f32ec1e17f7d400a85ebcf08eb5321.tar.bz2 fetchmail-adf54c77a7f32ec1e17f7d400a85ebcf08eb5321.zip |
Correct MIME boundaries.
svn path=/trunk/; revision=2222
-rw-r--r-- | sink.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -286,24 +286,24 @@ static int send_bouncemail(struct msgblk *msg, SockPrintf(sock, "\r\n"); /* RFC1892 part 1 -- human-readable message */ - SockPrintf(sock, "-- om-mani-padme-hum\r\n"); + SockPrintf(sock, "--om-mani-padme-hum\r\n"); SockPrintf(sock,"Content-Type: text/plain\r\n"); SockPrintf(sock, "\r\n"); SockWrite(sock, message, strlen(message)); /* RFC1892 part 2 -- machine-readable responses */ - SockPrintf(sock, "-- om-mani-padme-hum\r\n"); + SockPrintf(sock, "--om-mani-padme-hum\r\n"); SockPrintf(sock,"Content-Type: message/delivery-status\r\n"); SockPrintf(sock, "\r\n"); for (i = 0; i < nerrors; i++) SockPrintf(sock, errors[i]); /* RFC1892 part 3 -- headers of undelivered message */ - SockPrintf(sock, "-- om-mani-padme-hum\r\n"); + SockPrintf(sock, "--om-mani-padme-hum\r\n"); SockPrintf(sock, "Content-Type: text/rfc822-headers\r\n"); SockPrintf(sock, "\r\n"); SockWrite(sock, msg->headers, strlen(msg->headers)); - SockPrintf(sock, "-- om-mani-padme-hum --\r\n"); + SockPrintf(sock, "--om-mani-padme-hum--\r\n"); if (SMTP_eom(sock) != SM_OK || SMTP_quit(sock)) return(FALSE); |