Skip to content

Commit

Permalink
fixed parse for serverlogistics.com
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhvh committed Mar 19, 2012
1 parent fb8644c commit 7c0d9ed
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/low-level/imap/mailimap_parser.c
Expand Up @@ -3640,7 +3640,10 @@ mailimap_body_type_msg_parse(mailstream * fd, MMAPString * buffer,
}

r = mailimap_space_parse(fd, buffer, &cur_token);
if (r != MAILIMAP_NO_ERROR) {
if (r == MAILIMAP_ERROR_PARSE) {
// do nothing
}
else if (r != MAILIMAP_NO_ERROR) {
res = r;
goto envelope;
}
Expand Down

0 comments on commit 7c0d9ed

Please sign in to comment.