Lines Matching refs:mailbox

58    This exception is raised when a writable mailbox has its status changed by the
60 write permission, and the mailbox will need to be re-opened to re-obtain write
116 Note that IMAP4 message numbers change as the mailbox changes; in particular,
162 .. method:: IMAP4.append(mailbox, flags, date_time, message)
164 Append *message* to named mailbox.
185 Checkpoint mailbox on server.
190 Close currently selected mailbox. Deleted messages are removed from writable
191 mailbox. This is the recommended command before ``LOGOUT``.
199 .. method:: IMAP4.create(mailbox)
201 Create new mailbox named *mailbox*.
204 .. method:: IMAP4.delete(mailbox)
206 Delete old mailbox named *mailbox*.
209 .. method:: IMAP4.deleteacl(mailbox, who)
211 Delete the ACLs (remove any rights) set for who on mailbox.
218 Permanently remove deleted items from selected mailbox. Generates an ``EXPUNGE``
230 .. method:: IMAP4.getacl(mailbox)
232 Get the ``ACL``\ s for *mailbox*. The method is non-standard, but is supported
236 .. method:: IMAP4.getannotation(mailbox, entry, attribute)
238 Retrieve the specified ``ANNOTATION``\ s for *mailbox*. The method is
252 .. method:: IMAP4.getquotaroot(mailbox)
254 Get the list of ``quota`` ``roots`` for the named *mailbox*. This method is part
262 List mailbox names in *directory* matching *pattern*. *directory* defaults to
288 List subscribed mailbox names in directory matching pattern. *directory*
289 defaults to the top level directory and *pattern* defaults to match any mailbox.
293 .. method:: IMAP4.myrights(mailbox)
295 Show my ACLs for a mailbox (i.e. the rights that I have on mailbox).
330 into any user's mailbox.
353 Rename mailbox named *oldmailbox* to *newmailbox*.
364 Search mailbox for matching messages. *charset* may be ``None``, in which case
378 .. method:: IMAP4.select([mailbox[, readonly]])
380 Select a mailbox. Returned data is the count of messages in *mailbox*
381 (``EXISTS`` response). The default *mailbox* is ``'INBOX'``. If the *readonly*
382 flag is set, modifications to the mailbox are not allowed.
390 .. method:: IMAP4.setacl(mailbox, who, what)
392 Set an ``ACL`` for *mailbox*. The method is non-standard, but is supported by
396 .. method:: IMAP4.setannotation(mailbox, entry, attribute[, ...])
398 Set ``ANNOTATION``\ s for *mailbox*. The method is non-standard, but is
433 corresponds to ``search``. The ``sort`` command first searches the mailbox for
441 .. method:: IMAP4.status(mailbox, names)
443 Request named status conditions for *mailbox*.
448 Alters flag dispositions for messages in mailbox. *command* is specified by
460 .. method:: IMAP4.subscribe(mailbox)
462 Subscribe to new mailbox.
478 mailbox for messages that match the given searching criteria using the charset
496 .. method:: IMAP4.unsubscribe(mailbox)
498 Unsubscribe from old mailbox.
532 Here is a minimal example (without error checking) that opens a mailbox and