SMTP: fix 2953552, allow RSET in AUTHENTICATED state

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@950 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-02-18 21:01:17 +00:00
parent 3785581305
commit 6a269179ae
1 changed files with 2 additions and 1 deletions

View File

@ -157,7 +157,8 @@ public class SmtpConnection extends AbstractConnection {
if (state == State.STARTMAIL ||
state == State.RECIPIENT ||
state == State.MAILDATA) {
state == State.MAILDATA ||
state == State.AUTHENTICATED) {
state = State.AUTHENTICATED;
} else {
state = State.INITIAL;