Skip to content
Open
Changes from 4 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
18 changes: 17 additions & 1 deletion Doc/library/imaplib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,23 @@ An :class:`IMAP4` instance has the following methods:

.. method:: IMAP4.append(mailbox, flags, date_time, message)

Append *message* to named mailbox.
Append *message* to a named *mailbox*.

*flags* is a space-separated string containing IMAP flags tokens.
System flags defined in :rfc:`3501` are:

``\Seen`` - Message has been read.
``\Answered`` - Message has been answered.
``\Flagged`` - Message is "flagged" for urgent/special attention.
``\Deleted`` - Message is "deleted" for removal by later ``EXPUNGE``.
``\Draft`` - Message has not completed composition (marked as a draft).
``\Recent`` - Message is "recently" arrived in this mailbox.


*date_time* is the date and time associated with the message.

*message* is a string representing the entire email message, including
headers and body.


.. method:: IMAP4.authenticate(mechanism, authobject)
Expand Down