private ImapMailbox getMailbox() throws MailboxException
{
ImapStore store = new InMemoryStore();
ImapMailbox root = store.getMailbox( ImapConstants.USER_NAMESPACE );
ImapMailbox test = store.createMailbox( root, "test", true );
return test;
}
class MimeMessageByteArraySource extends MimeMessageSource
{