• Home
  • Raw
  • Download

Lines Matching refs:mbox

17 Maildir, mbox, MH, Babyl, and MMDF.
71 tasks is Maildir; try to avoid using single-file formats such as mbox for
90 :class:`mboxMessage` instance and this is an :class:`mbox` instance), its
118 :class:`mbox` instance), its format-specific information is
421 .. _mailbox-mbox:
423 :class:`mbox`
427 .. class:: mbox(path, factory=None, create=True)
429 A subclass of :class:`Mailbox` for mailboxes in mbox format. Parameter *factory*
436 The mbox format is the classic format for storing mail on Unix systems. All
437 messages in an mbox mailbox are stored in a single file with the beginning of
440 Several variations of the mbox format exist to address perceived shortcomings in
441 the original. In the interest of compatibility, :class:`mbox` implements the
448 Some :class:`Mailbox` methods implemented by :class:`mbox` deserve special
455 :class:`mbox` instance may yield unpredictable results or raise an
468 `mbox man page from qmail <http://www.qmail.org/man/man5/mbox.html>`_
471 `mbox man page from tin <http://www.tin.org/bin/man.cgi?section=5&topic=mbox>`_
475 An argument for using the original mbox format rather than a variation.
477 …`"mbox" is a family of several mutually incompatible mailbox formats <https://www.loc.gov/preserva…
478 A history of mbox variations.
704 form as an mbox message but is bracketed before and after by lines containing
705 four Control-A (``'\001'``) characters. As with the mbox format, the
951 A message with mbox-specific behaviors. Parameter *message* has the same meaning
954 Messages in an mbox mailbox are stored together in a single file. The
958 mbox implementations. Flags that indicate the state of the message, such as
962 Conventional flags for mbox messages are as follows:
988 message in an mbox mailbox. The leading "From " and the trailing newline
1326 As with message in an mbox mailbox, MMDF messages are stored with the
1331 Conventional flags for MMDF messages are identical to those of mbox message
1359 message in an mbox mailbox. The leading "From " and the trailing newline
1625 mbox = mailbox.UnixMailbox(fp, msgfactory)
1633 mbox = mailbox.UnixMailbox(fp, email.message_from_file)
1645 for message in mailbox.mbox('~/mbox'):
1671 boxes = dict((name, mailbox.mbox('~/email/%s' % name)) for name in list_names)