class documentation

An in-memory account that does not provide INamespacePresenter.

Method select Acquire a mailbox, given its name.
Method _emptyMailbox Undocumented

Inherited from MemoryAccountWithoutNamespaces:

Method __init__ Undocumented
Method addMailbox Add a new mailbox to this account
Method allocateID Undocumented
Method create Create a new mailbox from the given hierarchical name.
Method delete Delete the mailbox with the specified name.
Method isSubscribed Check the subscription status of a mailbox
Method listMailboxes List all the mailboxes that meet a certain criteria
Method rename Rename a mailbox
Method subscribe Subscribe to a mailbox
Method unsubscribe Unsubscribe from a mailbox
Class Variable top_id Undocumented
Instance Variable mailboxes Undocumented
Instance Variable name Undocumented
Instance Variable subscriptions Undocumented
Method _inferiorNames Undocumented
def select(self, name, rw=1): (source)

Acquire a mailbox, given its name.

Parameters
name:bytesThe mailbox to acquire
rw:boolIf a true value, request a read-write version of this mailbox. If a false value, request a read-only version.
Returns
Any object implementing IMailboxIMAP or DeferredThe mailbox object, or a Deferred whose callback will be invoked with the mailbox object. None may be returned if the specified mailbox may not be selected for any reason.
def _emptyMailbox(self, name, id): (source)