mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-13 03:02:22 -05:00
Cleanup from audit
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@286 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
ec59882589
commit
ca25de0e5c
@ -2,7 +2,6 @@ package davmail;
|
||||
|
||||
import davmail.caldav.CaldavServer;
|
||||
import davmail.exchange.ExchangeSessionFactory;
|
||||
import davmail.exchange.NetworkDownException;
|
||||
import davmail.http.DavGatewayHttpClientFacade;
|
||||
import davmail.http.DavGatewaySSLProtocolSocketFactory;
|
||||
import davmail.ldap.LdapServer;
|
||||
|
@ -634,7 +634,7 @@ public class ExchangeSession {
|
||||
}
|
||||
}
|
||||
// patch thunderbird html in reply for correct outlook display
|
||||
if (line.startsWith("<head>")) {
|
||||
if (line != null && line.startsWith("<head>")) {
|
||||
mailBuffer.append(line).append("\n");
|
||||
line = " <style> blockquote { display: block; margin: 1em 0px; padding-left: 1em; border-left: solid; border-color: blue; border-width: thin;}</style>";
|
||||
}
|
||||
|
@ -2,7 +2,6 @@ package davmail.ui;
|
||||
|
||||
import org.eclipse.swt.program.Program;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user