This patch reverts Qremote to qmail-remote behaviour if the message contains 8 bit characters and the remote host does not announce 8BITMIME: just send the mail. This behaviour has caused no problems to me (or at least I never noticed them) but it violates the RfC. You might need this patch if some of your clients send mails with "Content-Transfer-Encoding: 8bit". Hopefully I will add quoted-printable recoding one day and this can go away then. Index: qremote/qrdata.c =================================================================== --- qremote/qrdata.c (revision 532) +++ qremote/qrdata.c (working copy) @@ -30,12 +30,14 @@ __off64_t off = 0; #endif +#if 0 if (!(smtpext & 0x008) && !ascii) { #warning FIXME: add proper quoted-printable recoding here write(1, "Z4.6.3 message has 8 Bit characters but next server " "does not accept 8BITMIME", 77); quit(); } +#endif successmsg[2] = ""; netwrite("DATA\r\n");