Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Doc/library/imaplib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,12 @@ An :class:`IMAP4` instance has the following methods:
(``EXISTS`` response). The default *mailbox* is ``'INBOX'``. If the *readonly*
flag is set, modifications to the mailbox are not allowed.

.. note::

Mailbox names containing spaces must be quoted by the caller.
For example, to select a mailbox named ``my important mail``, use
``M.select('"my important mail"')``.


.. method:: IMAP4.send(data)

Expand Down
Loading