Lines Matching refs:MH
19 Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
500 :class:`MH`
504 .. class:: MH(path, factory=None, create=True)
506 A subclass of :class:`Mailbox` for mailboxes in MH format. Parameter *factory*
513 MH is a directory-based mailbox format invented for the MH Message Handling
514 System, a mail user agent. Each message in an MH mailbox resides in its own
515 file. An MH mailbox may contain other MH mailboxes (called :dfn:`folders`) in
516 addition to messages. Folders may be nested indefinitely. MH mailboxes also
521 The :class:`MH` class manipulates MH mailboxes, but it does not attempt to
526 :class:`MH` instances have all of the methods of :class:`Mailbox` in addition
537 Return an :class:`MH` instance representing the folder whose name is
544 Create a folder whose name is *folder* and return an :class:`MH` instance
578 Some :class:`Mailbox` methods implemented by :class:`MH` deserve special
586 These methods immediately delete the message. The MH convention of marking
594 :c:func:`flock` and :c:func:`lockf` system calls. For MH mailboxes, locking
608 All changes to MH mailboxes are immediately applied, so this method does
614 :class:`MH` instances do not keep any open files, so this method is
623 `MH & nmh: Email for Users & Programmers <https://rand-mh.sourceforge.io/book/>`_
1124 A message with MH-specific behaviors. Parameter *message* has the same meaning
1127 MH messages do not support marks or flags in the traditional sense, but they
1522 Raised when the data in a file cannot be parsed, such as when an :class:`MH`
1540 To copy all mail from a Babyl mailbox to an MH mailbox, converting all of the
1544 destination = mailbox.MH('~/Mail')