• Home
  • Raw
  • Download

Lines Matching refs:MH

19 Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
497 :class:`MH`
501 .. class:: MH(path, factory=None, create=True)
503 A subclass of :class:`Mailbox` for mailboxes in MH format. Parameter *factory*
510 MH is a directory-based mailbox format invented for the MH Message Handling
511 System, a mail user agent. Each message in an MH mailbox resides in its own
512 file. An MH mailbox may contain other MH mailboxes (called :dfn:`folders`) in
513 addition to messages. Folders may be nested indefinitely. MH mailboxes also
518 The :class:`MH` class manipulates MH mailboxes, but it does not attempt to
523 :class:`MH` instances have all of the methods of :class:`Mailbox` in addition
534 Return an :class:`MH` instance representing the folder whose name is
541 Create a folder whose name is *folder* and return an :class:`MH` instance
575 Some :class:`Mailbox` methods implemented by :class:`MH` deserve special
583 These methods immediately delete the message. The MH convention of marking
591 :c:func:`flock` and :c:func:`lockf` system calls. For MH mailboxes, locking
605 All changes to MH mailboxes are immediately applied, so this method does
611 :class:`MH` instances do not keep any open files, so this method is
620 `MH & nmh: Email for Users & Programmers <https://rand-mh.sourceforge.io/book/>`_
1121 A message with MH-specific behaviors. Parameter *message* has the same meaning
1124 MH messages do not support marks or flags in the traditional sense, but they
1519 Raised when the data in a file cannot be parsed, such as when an :class:`MH`
1537 To copy all mail from a Babyl mailbox to an MH mailbox, converting all of the
1541 destination = mailbox.MH('~/Mail')