MaildirFolder.getFolder(String name):
I think the line:
} else if (name.equals("INBOX")) {
should read:
} else if (name.toUpperCase().equals("INBOX")) {
as is done in the constructor. i.e. INBOX should be case insensitively matched.
Log in to post a comment.