Lines Matching refs:mbox
19 Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
72 tasks is Maildir; try to avoid using single-file formats such as mbox for
92 :class:`mboxMessage` instance and this is an :class:`mbox` instance), its
124 :class:`mbox` instance), its format-specific information is
438 .. _mailbox-mbox:
440 :class:`mbox`
444 .. class:: mbox(path, factory=None, create=True)
446 A subclass of :class:`Mailbox` for mailboxes in mbox format. Parameter *factory*
453 The mbox format is the classic format for storing mail on Unix systems. All
454 messages in an mbox mailbox are stored in a single file with the beginning of
457 Several variations of the mbox format exist to address perceived shortcomings in
458 the original. In the interest of compatibility, :class:`mbox` implements the
465 Some :class:`Mailbox` methods implemented by :class:`mbox` deserve special
472 :class:`mbox` instance may yield unpredictable results or raise an
485 `mbox man page from qmail <http://www.qmail.org/man/man5/mbox.html>`_
488 `mbox man page from tin <http://www.tin.org/bin/man.cgi?section=5&topic=mbox>`_
492 An argument for using the original mbox format rather than a variation.
494 …`"mbox" is a family of several mutually incompatible mailbox formats <https://www.loc.gov/preserva…
495 A history of mbox variations.
721 form as an mbox message but is bracketed before and after by lines containing
722 four Control-A (``'\001'``) characters. As with the mbox format, the
970 A message with mbox-specific behaviors. Parameter *message* has the same meaning
973 Messages in an mbox mailbox are stored together in a single file. The
977 mbox implementations. Flags that indicate the state of the message, such as
981 Conventional flags for mbox messages are as follows:
1007 message in an mbox mailbox. The leading "From " and the trailing newline
1345 As with message in an mbox mailbox, MMDF messages are stored with the
1350 Conventional flags for MMDF messages are identical to those of mbox message
1378 message in an mbox mailbox. The leading "From " and the trailing newline
1535 for message in mailbox.mbox('~/mbox'):
1561 boxes = {name: mailbox.mbox('~/email/%s' % name) for name in list_names}