1
0
mirror of https://github.com/moparisthebest/davmail synced 2025-01-13 06:28:19 -05:00

SMTP: bug id 2953554, implement NOOP

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@948 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-02-18 09:21:43 +00:00
parent b48ed50ddc
commit 3ceb6421b4

View File

@ -80,6 +80,8 @@ public class SmtpConnection extends AbstractConnection {
} else if ("QUIT".equalsIgnoreCase(command)) {
sendClient("221 Closing connection");
break;
} else if ("NOOP".equalsIgnoreCase(command)) {
sendClient("250 OK");
} else if ("EHLO".equalsIgnoreCase(command)) {
sendClient("250-" + tokens.nextToken());
// inform server that AUTH is supported