ignore untagged OK responses that contain no other information

fork
mscdex 11 years ago
parent 30c11e4710
commit 037fcc2fff

@ -23,7 +23,7 @@ var CRLF = '\r\n',
BOXSELECTED: 4
},
RE_LITHEADER = /(?:((?:BODY\[.*\](?:<\d+>)?)?|[^ ]+) )?\{(\d+)\}$/i,
RE_UNRESP = /^\* (OK|PREAUTH|NO|BAD) (?:\[(.+)\] )?(.+)$/i,
RE_UNRESP = /^\* (OK|PREAUTH|NO|BAD)(?:\r\n| (?:\[(.+)\] )?(.+))$/i,
//RE_ISPARTIAL = /<(\d+)>$/,
RE_DBLQ = /"/g,
RE_CMD = /^([^ ]+)(?: |$)/,
@ -532,6 +532,8 @@ ImapConnection.prototype.connect = function(loginCb) {
switch (m[1]) {
case 'OK':
var code = m[2];
if (code === undefined)
break;
if (state.status === STATES.NOAUTH) {
if (!state.isReady) {
clearTimeout(state.tmrConn);

Loading…
Cancel
Save