SMTP: fix bug 2791607, do not patch message body (breaks electronic signature), no longer needed with latest Thunderbird

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@629 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-07-23 12:02:13 +00:00
parent 3051b42ca0
commit ea41aaf943
1 changed files with 0 additions and 5 deletions

View File

@ -815,11 +815,6 @@ public class ExchangeSession {
recipientBuffer.append(line);
}
}
// patch thunderbird html in reply for correct outlook display
if (line != null && line.startsWith("<head>")) {
mailBuffer.append(line).append((char) 13).append((char) 10);
line = " <style> blockquote { display: block; margin: 1em 0px; padding-left: 1em; border-left: solid; border-color: blue; border-width: thin;}</style>";
}
}
// remove visible recipients from list
List<String> visibleRecipients = new ArrayList<String>();