From bf3403d931cf3ae3b0e9a9c9f61c7780b69304fd Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 22 Jul 2007 02:30:14 +0000 Subject: [PATCH] lowercase the name of the inbox darcs-hash:20070722023014-5007d-5e68bdfd3a3bd451a2042cc4445013240e491b19.gz --- src/org/ibex/mail/IMAP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/ibex/mail/IMAP.java b/src/org/ibex/mail/IMAP.java index 9c1ee6b..f97e771 100644 --- a/src/org/ibex/mail/IMAP.java +++ b/src/org/ibex/mail/IMAP.java @@ -294,7 +294,7 @@ public class IMAP { } else { Account account = (Account)ret; ((MailboxWrapper)api).root = root = account.getMailbox(IMAP.class); - MailTree ibt = root.slash("INBOX", false); + MailTree ibt = root.slash("inbox", false); Mailbox ib = ibt==null ? null : ibt.getMailbox(); ((MailboxWrapper)api).inbox = inbox = ib; } -- 1.7.10.4