issues@javamail.java.net

[Bug 2986] Add RFC 3348 (IMAP Child Mailbox Extension) support

From: <bugzilla-daemon_at_kenai.com>
Date: Tue, 2 Nov 2010 22:45:42 +0000 (GMT)

http://kenai.com/bugzilla/show_bug.cgi?id=2986


Electrum_at_kenai.com changed:

           What |Removed |Added
----------------------------------------------------------------------------
             Status|RESOLVED |CLOSED
         Resolution|WORKSFORME |INVALID




--- Comment #2 from Electrum_at_kenai.com 2010-11-02 22:45:41 ---
Thanks, I missed that method. This works as expected:

    private static void getFolders(Folder folder) throws MessagingException
    {
        for (Folder f : folder.list()) {
            System.out.println(f.getFullName());
            if (!Arrays.asList(((IMAPFolder)
f).getAttributes()).contains("\\HasNoChildren")) {
                getFolders(f);
            }
        }
    }

        ...
        getFolders(store.getDefaultFolder());
        ...

-- 
Configure bugmail: http://kenai.com/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.