make response code parse failure of untagged OK/NO/BYE/BAD non-fatal

as such, it does not disrupt the data stream
This commit is contained in:
Oswald Buddenhagen 2010-12-05 16:49:11 +01:00
parent d2e13f147c
commit 121ce76e46

View File

@ -1018,8 +1018,7 @@ get_cmd_result( imap_store_t *ctx, struct imap_cmd *tcmd )
ctx->ns_shared = parse_list( &cmd );
} else if (!strcmp( "OK", arg ) || !strcmp( "BAD", arg ) ||
!strcmp( "NO", arg ) || !strcmp( "BYE", arg )) {
if ((resp = parse_response_code( ctx, 0, cmd )) != RESP_OK)
return resp;
parse_response_code( ctx, 0, cmd );
} else if (!strcmp( "CAPABILITY", arg ))
parse_capability( ctx, cmd );
else if (!strcmp( "LIST", arg ))