• Home
  • Raw
  • Download

Lines Matching refs:MH

17 Maildir, mbox, MH, Babyl, and MMDF.
483 :class:`MH`
487 .. class:: MH(path, factory=None, create=True)
489 A subclass of :class:`Mailbox` for mailboxes in MH format. Parameter *factory*
496 MH is a directory-based mailbox format invented for the MH Message Handling
497 System, a mail user agent. Each message in an MH mailbox resides in its own
498 file. An MH mailbox may contain other MH mailboxes (called :dfn:`folders`) in
499 addition to messages. Folders may be nested indefinitely. MH mailboxes also
504 The :class:`MH` class manipulates MH mailboxes, but it does not attempt to
509 :class:`MH` instances have all of the methods of :class:`Mailbox` in addition
520 Return an :class:`MH` instance representing the folder whose name is
527 Create a folder whose name is *folder* and return an :class:`MH` instance
561 Some :class:`Mailbox` methods implemented by :class:`MH` deserve special
569 These methods immediately delete the message. The MH convention of marking
577 :c:func:`flock` and :c:func:`lockf` system calls. For MH mailboxes, locking
591 All changes to MH mailboxes are immediately applied, so this method does
597 :class:`MH` instances do not keep any open files, so this method is
606 `MH & nmh: Email for Users & Programmers <http://rand-mh.sourceforge.net/book/>`_
1105 A message with MH-specific behaviors. Parameter *message* has the same meaning
1108 MH messages do not support marks or flags in the traditional sense, but they
1503 Raised when the data in a file cannot be parsed, such as when an :class:`MH`
1592 Access an MH mailbox, a directory with each message in a separate file with a
1650 To copy all mail from a Babyl mailbox to an MH mailbox, converting all of the
1654 destination = mailbox.MH('~/Mail')