- Support for tabs in IMAP ID response (for OS X Leopard Server support)
- Author: yostinso++
This commit is contained in:
Jesse Vincent 2008-10-29 04:20:50 +00:00
parent cf6a2379a0
commit 0df7dff688
1 changed files with 2 additions and 0 deletions

View File

@ -123,6 +123,8 @@ public class ImapResponseParser {
} else if (ch == '\n') {
expect('\n');
return null;
} else if (ch == '\t') {
expect('\t');
} else {
return parseAtom();
}