* commit '30ab1459a2a6885172f033b9ffccfd98521984cf': IMAP mailboxes are case-sensitive
This commit is contained in:
commit
709df3f45b
@ -538,8 +538,7 @@ public class LegacyConversions {
|
|||||||
if (mailboxName == null || mailboxName.length() == 0) {
|
if (mailboxName == null || mailboxName.length() == 0) {
|
||||||
return Mailbox.TYPE_MAIL;
|
return Mailbox.TYPE_MAIL;
|
||||||
}
|
}
|
||||||
String lowerCaseName = mailboxName.toLowerCase();
|
Integer type = sServerMailboxNames.get(mailboxName);
|
||||||
Integer type = sServerMailboxNames.get(lowerCaseName);
|
|
||||||
if (type != null) {
|
if (type != null) {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user