summaryrefslogtreecommitdiffstats
path: root/Doc/library/mhlib.rst
blob: 15d2b05ff0a5fc3788fe40b972ce77381721db8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205

:mod:`mhlib` --- Access to MH mailboxes
=======================================

.. module:: mhlib
   :synopsis: Manipulate MH mailboxes from Python.


.. % LaTeX'ized from the comments in the module by Skip Montanaro
.. % <skip@mojam.com>.

The :mod:`mhlib` module provides a Python interface to MH folders and their
contents.

The module contains three basic classes, :class:`MH`, which represents a
particular collection of folders, :class:`Folder`, which represents a single
folder, and :class:`Message`, which represents a single message.


.. class:: MH([path[, profile]])

   :class:`MH` represents a collection of MH folders.


.. class:: Folder(mh, name)

   The :class:`Folder` class represents a single folder and its messages.


.. class:: Message(folder, number[, name])

   :class:`Message` objects represent individual messages in a folder.  The Message
   class is derived from :class:`mimetools.Message`.


.. _mh-objects:

MH Objects
----------

:class:`MH` instances have the following methods:


.. method:: MH.error(format[, ...])

   Print an error message -- can be overridden.


.. method:: MH.getprofile(key)

   Return a profile entry (``None`` if not set).


.. method:: MH.getpath()

   Return the mailbox pathname.


.. method:: MH.getcontext()

   Return the current folder name.


.. method:: MH.setcontext(name)

   Set the current folder name.


.. method:: MH.listfolders()

   Return a list of top-level folders.


.. method:: MH.listallfolders()

   Return a list of all folders.


.. method:: MH.listsubfolders(name)

   Return a list of direct subfolders of the given folder.


.. method:: MH.listallsubfolders(name)

   Return a list of all subfolders of the given folder.


.. method:: MH.makefolder(name)

   Create a new folder.


.. method:: MH.deletefolder(name)

   Delete a folder -- must have no subfolders.


.. method:: MH.openfolder(name)

   Return a new open folder object.


.. _mh-folder-objects:

Folder Objects
--------------

:class:`Folder` instances represent open folders and have the following methods:


.. method:: Folder.error(format[, ...])

   Print an error message -- can be overridden.


.. method:: Folder.getfullname()

   Return the folder's full pathname.


.. method:: Folder.getsequencesfilename()

   Return the full pathname of the folder's sequences file.


.. method:: Folder.getmessagefilename(n)

   Return the full pathname of message *n* of the folder.


.. method:: Folder.listmessages()

   Return a list of messages in the folder (as numbers).


.. method:: Folder.getcurrent()

   Return the current message number.


.. method:: Folder.setcurrent(n)

   Set the current message number to *n*.


.. method:: Folder.parsesequence(seq)

   Parse msgs syntax into list of messages.


.. method:: Folder.getlast()

   Get last message, or ``0`` if no messages are in the folder.


.. method:: Folder.setlast(n)

   Set last message (internal use only).


.. method:: Folder.getsequences()

   Return dictionary of sequences in folder.  The sequence names are used  as keys,
   and the values are the lists of message numbers in the sequences.


.. method:: Folder.putsequences(dict)

   Return dictionary of sequences in folder name: list.


.. method:: Folder.removemessages(list)

   Remove messages in list from folder.


.. method:: Folder.refilemessages(list, tofolder)

   Move messages in list to other folder.


.. method:: Folder.movemessage(n, tofolder, ton)

   Move one message to a given destination in another folder.


.. method:: Folder.copymessage(n, tofolder, ton)

   Copy one message to a given destination in another folder.


.. _mh-message-objects:

Message Objects
---------------

The :class:`Message` class adds one method to those of
:class:`mimetools.Message`:


.. method:: Message.openmessage(n)

   Return a new open message object (costs a file descriptor).