further improvement for the import of Mail messages

This commit is contained in:
Klaus Leithoff 2008-08-01 13:03:17 +00:00
parent 402c0308dd
commit b82110bcd7

View File

@ -1385,7 +1385,10 @@ class uiinfolog
while(list($key,$value) = @each($newBody))
{
if (trim($value) != '') {
if ($value != "\r") $value .= "\n";
#if ($value != "\r") $value .= "\n";
} else {
// if you want to strip all empty lines uncomment the following
#continue;
}
$bodyAppend = $bofelamimail->wordwrap($value,75,"\n");
$message .= $bodyAppend;