From adf54c77a7f32ec1e17f7d400a85ebcf08eb5321 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 28 Nov 1998 16:39:21 +0000 Subject: Correct MIME boundaries. svn path=/trunk/; revision=2222 --- sink.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sink.c b/sink.c index e7ec4121..3ebe0545 100644 --- a/sink.c +++ b/sink.c @@ -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); -- cgit v1.2.3