Imap: change kerberos login error message

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@2076 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2013-03-28 23:34:04 +00:00
parent df954df0f3
commit 67d665ff5f
1 changed files with 5 additions and 5 deletions

View File

@ -115,11 +115,11 @@ public class ImapConnection extends AbstractConnection {
state = State.AUTHENTICATED;
} catch (Exception e) {
DavGatewayTray.error(e);
if (Settings.getBooleanProperty("davmail.enableKerberos")) {
// Kerberos authentication failed
throw e;
}
sendClient(commandId + " NO LOGIN failed");
if (Settings.getBooleanProperty("davmail.enableKerberos")) {
sendClient(commandId + " NO LOGIN Kerberos authentication failed");
} else {
sendClient(commandId + " NO LOGIN failed");
}
state = State.INITIAL;
}
} else if ("AUTHENTICATE".equalsIgnoreCase(command)) {