- Support for tabs in IMAP ID response (for OS X Leopard Server support) - Author: yostinso++
This commit is contained in:
parent
cf6a2379a0
commit
0df7dff688
1 changed files with 2 additions and 0 deletions
|
@ -123,6 +123,8 @@ public class ImapResponseParser {
|
|||
} else if (ch == '\n') {
|
||||
expect('\n');
|
||||
return null;
|
||||
} else if (ch == '\t') {
|
||||
expect('\t');
|
||||
} else {
|
||||
return parseAtom();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue