Make sure CRLF is sent on POP connection

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@123 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2008-02-05 23:18:23 +00:00
parent 61282ec454
commit 488148c82e
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ public class AbstractConnection extends Thread {
logBuffer.append(message);
DavGatewayTray.debug(logBuffer.toString());
os.write(message.getBytes());
os.write('\r');
os.write('\n');
os.write((char)13);
os.write((char)10);
os.flush();
}