-------- Original Message -------- Subject: Re: GMail and Extra Linefeeds Date: Mon, 07 Nov 2005 00:12:37 +0100 From: Thomas Bruederli roundcube@gmail.com To: dev@lists.roundcube.net References: 924B467C-CC50-4CCB-BC59-D9F6504F104B@tinypineapple.com
Hello,
I can not reproduce this with my development environment but you could try out the following:
Replace
$MAIL_MIME = new Mail_mime();
in program/steps/mail/sendmail.inc with the following line
$MAIL_MIME = new Mail_mime("\n");
This will use "\n" instead of "\r\n" as delimiter for the message headers.
Please report the result of this change.
Regards, Thomas
Mark Roy wrote:
Hey,
I just noticed that emails sent from RoundCube seem to confuse Gmail.
It doesn't parse the headers correctly and so it can't tell who its from or where the body begins and the headers stop. As well it doesn't decode attachments and such. This is probably a glitch with gmail, but its an issue that we should resolve in roundcube. Not sure if this has already been resolved or not, but I will try updating my install of roundcube and see if that fixes the problem.
Mark Roy