0
|
1 (provide 'vm-autoload)
|
|
2
|
|
3 (autoload (quote vm-delete-message) "vm-delete" "Add the `deleted' attribute to the current message.
|
|
4
|
|
5 The message will be physically deleted from the current folder the next
|
|
6 time the current folder is expunged.
|
|
7
|
|
8 With a prefix argument COUNT, the current message and the next
|
98
|
9 COUNT - 1 messages are deleted. A negative argument means
|
0
|
10 the current message and the previous |COUNT| - 1 messages are
|
|
11 deleted.
|
|
12
|
|
13 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
14 only marked messages are deleted, other messages are ignored." t nil)
|
|
15
|
|
16 (autoload (quote vm-delete-message-backward) "vm-delete" "Like vm-delete-message, except the deletion direction is reversed." t nil)
|
|
17
|
|
18 (autoload (quote vm-undelete-message) "vm-delete" "Remove the `deleted' attribute from the current message.
|
|
19
|
|
20 With a prefix argument COUNT, the current message and the next
|
98
|
21 COUNT - 1 messages are undeleted. A negative argument means
|
0
|
22 the current message and the previous |COUNT| - 1 messages are
|
|
23 deleted.
|
|
24
|
|
25 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
26 only marked messages are undeleted, other messages are ignored." t nil)
|
|
27
|
|
28 (autoload (quote vm-kill-subject) "vm-delete" "Delete all messages with the same subject as the current message.
|
|
29 Message subjects are compared after ignoring parts matched by
|
98
|
30 the variables vm-subject-ignored-prefix and vm-subject-ignored-suffix.
|
|
31
|
|
32 The optional prefix argument ARG specifies the direction to move
|
|
33 if vm-move-after-killing is non-nil. The default direction is
|
|
34 forward. A positive prefix argument means move forward, a
|
|
35 negative arugment means move backward, a zero argument means
|
|
36 don't move at all." t nil)
|
0
|
37
|
|
38 (autoload (quote vm-expunge-folder) "vm-delete" "Expunge messages with the `deleted' attribute.
|
|
39 For normal folders this means that the deleted messages are
|
|
40 removed from the message list and the message contents are
|
|
41 removed from the folder buffer.
|
|
42
|
|
43 For virtual folders, messages are removed from the virtual
|
|
44 message list. If virtual mirroring is in effect for the virtual
|
|
45 folder, the corresponding real messages are also removed from real
|
|
46 message lists and the message contents are removed from real folders.
|
|
47
|
|
48 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
49 only messages both marked and deleted are expunged, other messages are
|
|
50 ignored." t nil)
|
|
51
|
|
52 (autoload (quote vm-no-frills-encapsulate-message) "vm-digest" "Encapsulate a message M for forwarding, simply.
|
|
53 No message encapsulation standard is used. The message is
|
|
54 inserted at point in the current buffer, surrounded by two dashed
|
|
55 start/end separator lines. Point is not moved.
|
|
56
|
|
57 M should be a message struct for a real message, not a virtual message.
|
|
58 This is the message that will be encapsulated.
|
|
59 KEEP-LIST should be a list of regexps matching headers to keep.
|
|
60 DISCARD-REGEXP should be a regexp that matches headers to be discarded.
|
|
61 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers
|
|
62 to be forwarded. See the docs for vm-reorder-message-headers
|
|
63 to find out how KEEP-LIST and DISCARD-REGEXP are used." nil nil)
|
|
64
|
98
|
65 (autoload (quote vm-mime-encapsulate-messages) "vm-digest" "Encapsulate the messages in MESSAGE-LIST as per the MIME spec.
|
|
66 The resulting digest is inserted at point in the current buffer.
|
|
67 Point is not moved.
|
|
68
|
|
69 MESSAGE-LIST should be a list of message structs (real or virtual).
|
|
70 These are the messages that will be encapsulated.
|
|
71 KEEP-LIST should be a list of regexps matching headers to keep.
|
|
72 DISCARD-REGEXP should be a regexp that matches headers to be discarded.
|
|
73 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers
|
|
74 to be forwarded. See the docs for vm-reorder-message-headers
|
|
75 to find out how KEEP-LIST and DISCARD-REGEXP are used.
|
|
76
|
|
77 Returns the multipart boundary parameter (string) that should be used
|
|
78 in the Content-Type header." nil nil)
|
|
79
|
|
80 (autoload (quote vm-mime-burst-message) "vm-digest" "Burst messages from the digest message M.
|
|
81 M should be a message struct for a real message.
|
|
82 MIME encoding is expected. The message content type
|
|
83 must be either message/* or multipart/digest." nil nil)
|
|
84
|
|
85 (autoload (quote vm-mime-burst-layout) "vm-digest" nil nil nil)
|
|
86
|
0
|
87 (autoload (quote vm-rfc934-char-stuff-region) "vm-digest" "Quote RFC 934 message separators between START and END.
|
|
88 START and END are buffer positions in the current buffer.
|
|
89 Lines beginning with `-' in the region have `- ' prepended to them." nil nil)
|
|
90
|
|
91 (autoload (quote vm-rfc934-char-unstuff-region) "vm-digest" "Unquote lines in between START and END as per RFC 934.
|
|
92 START and END are buffer positions in the current buffer.
|
|
93 Lines beginning with `- ' in the region have that string stripped
|
|
94 from them." nil nil)
|
|
95
|
|
96 (autoload (quote vm-rfc934-encapsulate-messages) "vm-digest" "Encapsulate the messages in MESSAGE-LIST as per RFC 934.
|
|
97 The resulting digest is inserted at point in the current buffer.
|
|
98 Point is not moved.
|
|
99
|
|
100 MESSAGE-LIST should be a list of message structs (real or virtual).
|
|
101 These are the messages that will be encapsulated.
|
|
102 KEEP-LIST should be a list of regexps matching headers to keep.
|
|
103 DISCARD-REGEXP should be a regexp that matches headers to be discarded.
|
|
104 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers
|
|
105 to be forwarded. See the docs for vm-reorder-message-headers
|
|
106 to find out how KEEP-LIST and DISCARD-REGEXP are used." nil nil)
|
|
107
|
|
108 (autoload (quote vm-rfc1153-char-stuff-region) "vm-digest" "Quote RFC 1153 message separators between START and END.
|
|
109 START and END are buffer positions in the current buffer.
|
|
110 Lines consisting only of 30 hyphens have the first hyphen
|
|
111 converted to a space." nil nil)
|
|
112
|
|
113 (autoload (quote vm-rfc1153-char-unstuff-region) "vm-digest" "Unquote lines in between START and END as per RFC 1153.
|
|
114 START and END are buffer positions in the current buffer.
|
|
115 Lines consisting only of a space following by 29 hyphens have the space
|
|
116 converted to a hyphen." nil nil)
|
|
117
|
|
118 (autoload (quote vm-rfc1153-encapsulate-messages) "vm-digest" "Encapsulate the messages in MESSAGE-LIST as per RFC 1153.
|
|
119 The resulting digest is inserted at point in the current buffer.
|
|
120 Point is not moved.
|
|
121
|
|
122 MESSAGE-LIST should be a list of message structs (real or virtual).
|
|
123 These are the messages that will be encapsulated.
|
|
124 KEEP-LIST should be a list of regexps matching headers to keep.
|
|
125 DISCARD-REGEXP should be a regexp that matches headers to be discarded.
|
|
126 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers
|
|
127 to be forwarded. See the docs for vm-reorder-message-headers
|
|
128 to find out how KEEP-LIST and DISCARD-REGEXP are used." nil nil)
|
|
129
|
|
130 (autoload (quote vm-rfc1153-or-rfc934-burst-message) "vm-digest" "Burst messages from the digest message M.
|
|
131 M should be a message struct for a real message.
|
|
132 If RFC1153 is non-nil, assume the digest is of the form specified by
|
|
133 RFC 1153. Otherwise assume RFC 934 digests." nil nil)
|
|
134
|
|
135 (autoload (quote vm-rfc934-burst-message) "vm-digest" "Burst messages from the RFC 934 digest message M.
|
|
136 M should be a message struct for a real message." nil nil)
|
|
137
|
|
138 (autoload (quote vm-rfc1153-burst-message) "vm-digest" "Burst messages from the RFC 1153 digest message M.
|
|
139 M should be a message struct for a real message." nil nil)
|
|
140
|
|
141 (autoload (quote vm-burst-digest) "vm-digest" "Burst the current message (a digest) into its individual messages.
|
|
142 The digest's messages are assimilated into the folder as new mail
|
|
143 would be.
|
|
144
|
|
145 Optional argument DIGEST-TYPE is a string that tells VM what kind
|
|
146 of digest the current message is. If it is not given the value
|
|
147 defaults to the value of vm-digest-burst-type. When called
|
|
148 interactively DIGEST-TYPE will be read from the minibuffer.
|
|
149
|
|
150 If invoked on marked messages (via vm-next-command-uses-marks),
|
|
151 all marked messages will be burst." t nil)
|
|
152
|
|
153 (autoload (quote vm-burst-rfc934-digest) "vm-digest" "Burst an RFC 934 style digest" t nil)
|
|
154
|
|
155 (autoload (quote vm-burst-rfc1153-digest) "vm-digest" "Burst an RFC 1153 style digest" t nil)
|
|
156
|
98
|
157 (autoload (quote vm-burst-mime-digest) "vm-digest" "Burst a MIME digest" t nil)
|
|
158
|
0
|
159 (autoload (quote vm-guess-digest-type) "vm-digest" "Guess the digest type of the message M.
|
|
160 M should be the message struct of a real message.
|
98
|
161 Returns either \"rfc934\", \"rfc1153\" or \"mime\"." nil nil)
|
32
|
162
|
110
|
163 (autoload (quote vm-digest-get-header-contents) "vm-digest" nil nil nil)
|
|
164
|
0
|
165 (autoload (quote vm-easy-menu-define) "vm-easymenu" "Define a menu bar submenu in maps MAPS, according to MENU.
|
|
166 The menu keymap is stored in symbol SYMBOL, both as its value
|
|
167 and as its function definition. DOC is used as the doc string for SYMBOL.
|
|
168
|
|
169 The first element of MENU must be a string. It is the menu bar item name.
|
|
170 The rest of the elements are menu items.
|
|
171
|
|
172 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
|
|
173
|
|
174 NAME is a string--the menu item name.
|
|
175
|
|
176 CALLBACK is a command to run when the item is chosen,
|
|
177 or a list to evaluate when the item is chosen.
|
|
178
|
|
179 ENABLE is an expression; the item is enabled for selection
|
|
180 whenever this expression's value is non-nil.
|
|
181
|
|
182 Alternatively, a menu item may have the form:
|
|
183
|
|
184 [ NAME CALLBACK [ KEYWORD ARG ] ... ]
|
|
185
|
|
186 Where KEYWORD is one of the symbol defined below.
|
|
187
|
|
188 :keys KEYS
|
|
189
|
|
190 KEYS is a string; a complex keyboard equivalent to this menu item.
|
|
191 This is normally not needed because keyboard equivalents are usually
|
|
192 computed automatically.
|
|
193
|
|
194 :active ENABLE
|
|
195
|
|
196 ENABLE is an expression; the item is enabled for selection
|
|
197 whenever this expression's value is non-nil.
|
|
198
|
|
199 :suffix NAME
|
|
200
|
|
201 NAME is a string; the name of an argument to CALLBACK.
|
|
202
|
|
203 :style
|
|
204
|
|
205 STYLE is a symbol describing the type of menu item. The following are
|
|
206 defined:
|
|
207
|
|
208 toggle: A checkbox.
|
|
209 Currently just prepend the name with the string \"Toggle \".
|
|
210 radio: A radio button.
|
|
211 nil: An ordinary menu item.
|
|
212
|
|
213 :selected SELECTED
|
|
214
|
|
215 SELECTED is an expression; the checkbox or radio button is selected
|
|
216 whenever this expression's value is non-nil.
|
|
217 Currently just disable radio buttons, no effect on checkboxes.
|
|
218
|
|
219 A menu item can be a string. Then that string appears in the menu as
|
|
220 unselectable text. A string consisting solely of hyphens is displayed
|
|
221 as a solid horizontal line.
|
|
222
|
|
223 A menu item can be a list. It is treated as a submenu.
|
|
224 The first element should be the submenu name. That's used as the
|
|
225 menu item in the top-level menu. The cdr of the submenu list
|
70
|
226 is a list of menu items, as above." nil t)
|
0
|
227
|
|
228 (autoload (quote vm-easy-menu-do-define) "vm-easymenu" nil nil nil)
|
|
229
|
|
230 (autoload (quote vm-easy-menu-create-keymaps) "vm-easymenu" nil nil nil)
|
|
231
|
|
232 (autoload (quote vm-easy-menu-change) "vm-easymenu" "Change menu found at PATH as item NAME to contain ITEMS.
|
|
233 PATH is a list of strings for locating the menu containing NAME in the
|
|
234 menu bar. ITEMS is a list of menu items, as in `vm-easy-menu-define'.
|
|
235 These items entirely replace the previous items in that map.
|
|
236
|
|
237 Call this from `activate-menubar-hook' to implement dynamic menus." nil nil)
|
|
238
|
|
239 (autoload (quote vm-easy-menu-remove) "vm-easymenu" nil nil nil)
|
|
240
|
|
241 (autoload (quote vm-easy-menu-add) "vm-easymenu" nil nil nil)
|
|
242
|
|
243 (autoload (quote vm-edit-message) "vm-edit" "Edit the current message. Prefix arg means mark as unedited instead.
|
|
244 If editing, the current message is copied into a temporary buffer, and
|
|
245 this buffer is selected for editing. The major mode of this buffer is
|
|
246 controlled by the variable vm-edit-message-mode. The hooks specified
|
|
247 in vm-edit-message-hook are run just prior to returning control to the user
|
|
248 for editing.
|
|
249
|
|
250 Use C-c ESC when you have finished editing the message. The message
|
|
251 will be inserted into its folder replacing the old version of the
|
|
252 message. If you don't want your edited version of the message to
|
|
253 replace the original, use C-c C-] and the edit will be aborted." t nil)
|
|
254
|
|
255 (autoload (quote vm-edit-message-other-frame) "vm-edit" "Like vm-edit-message, but run in a newly created frame." t nil)
|
|
256
|
|
257 (autoload (quote vm-discard-cached-data) "vm-edit" "Discard cached information about the current message.
|
|
258 When VM gathers information from the headers of a message, it stores it
|
|
259 internally for future reference. This command causes VM to forget this
|
|
260 information, and VM will be forced to search the headers of the message
|
|
261 again for these data. VM will also have to decide again which headers
|
|
262 should be displayed and which should not. Therefore this command is
|
|
263 useful if you change the value of vm-visible-headers or
|
|
264 vm-invisible-header-regexp in the midst of a VM session.
|
|
265
|
|
266 Numeric prefix argument N means to discard data from the current message
|
|
267 plus the next N-1 messages. A negative N means discard data from the
|
|
268 current message and the previous N-1 messages.
|
|
269
|
|
270 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
271 data is discarded only from the marked messages in the current folder." t nil)
|
|
272
|
|
273 (autoload (quote vm-edit-message-end) "vm-edit" "End the edit of a message and copy the result to its folder." t nil)
|
|
274
|
|
275 (autoload (quote vm-edit-message-abort) "vm-edit" "Abort the edit of a message, forgetting changes to the message." t nil)
|
|
276
|
|
277 (autoload (quote vm-number-messages) "vm-folder" "Set the number-of and padded-number-of slots of messages
|
|
278 in vm-message-list.
|
|
279
|
|
280 If non-nil, START-POINT should point to a cons cell in
|
|
281 vm-message-list and the numbering will begin there, else the
|
|
282 numbering will begin at the head of vm-message-list. If
|
|
283 START-POINT is non-nil the reverse-link-of slot of the message in
|
|
284 the cons must be valid and the message pointed to (if any) must
|
|
285 have a non-nil number-of slot, because it is used to determine
|
|
286 what the starting message number should be.
|
|
287
|
|
288 If non-nil, END-POINT should point to a cons cell in
|
|
289 vm-message-list and the numbering will end with the message just
|
|
290 before this cell. A nil value means numbering will be done until
|
|
291 the end of vm-message-list is reached." nil nil)
|
|
292
|
|
293 (autoload (quote vm-set-numbering-redo-start-point) "vm-folder" "Set vm-numbering-redo-start-point to START-POINT if appropriate.
|
|
294 Also mark the current buffer as needing a display update.
|
|
295
|
|
296 START-POINT should be a cons in vm-message-list or just t.
|
|
297 (t means start from the beginning of vm-message-list.)
|
|
298 If START-POINT is closer to the head of vm-message-list than
|
|
299 vm-numbering-redo-start-point or is equal to t, then
|
|
300 vm-numbering-redo-start-point is set to match it." nil nil)
|
|
301
|
|
302 (autoload (quote vm-set-numbering-redo-end-point) "vm-folder" "Set vm-numbering-redo-end-point to END-POINT if appropriate.
|
|
303 Also mark the current buffer as needing a display update.
|
|
304
|
|
305 END-POINT should be a cons in vm-message-list or just t.
|
|
306 (t means number all the way to the end of vm-message-list.)
|
|
307 If END-POINT is closer to the end of vm-message-list or is equal
|
|
308 to t, then vm-numbering-redo-start-point is set to match it.
|
|
309 The number-of slot is used to determine proximity to the end of
|
|
310 vm-message-list, so this slot must be valid in END-POINT's message
|
|
311 and the message in the cons pointed to by vm-numbering-redo-end-point." nil nil)
|
|
312
|
|
313 (autoload (quote vm-do-needed-renumbering) "vm-folder" "Number messages in vm-message-list as specified by
|
|
314 vm-numbering-redo-start-point and vm-numbering-redo-end-point.
|
|
315
|
|
316 vm-numbering-redo-start-point = t means start at the head
|
|
317 of vm-message-list.
|
|
318 vm-numbering-redo-end-point = t means number all the way to the
|
|
319 end of vm-message-list.
|
|
320
|
|
321 Otherwise the variables' values should be conses in vm-message-list
|
|
322 or nil." nil nil)
|
|
323
|
|
324 (autoload (quote vm-set-summary-redo-start-point) "vm-folder" "Set vm-summary-redo-start-point to START-POINT if appropriate.
|
|
325 Also mark the current buffer as needing a display update.
|
|
326
|
|
327 START-POINT should be a cons in vm-message-list or just t.
|
|
328 (t means start from the beginning of vm-message-list.)
|
|
329 If START-POINT is closer to the head of vm-message-list than
|
98
|
330 vm-summary-redo-start-point or is equal to t, then
|
|
331 vm-summary-redo-start-point is set to match it." nil nil)
|
0
|
332
|
|
333 (autoload (quote vm-mark-for-summary-update) "vm-folder" "Mark message M for a summary update.
|
|
334 Also mark M's buffer as needing a display update. Any virtual
|
|
335 messages of M and their buffers are similarly marked for update.
|
|
336 If M is a virtual message and virtual mirroring is in effect for
|
|
337 M (i.e. attribute-of eq attributes-of M's real message), M's real
|
|
338 message and its buffer are scheduled for an update.
|
|
339
|
|
340 Optional arg DONT-KILL-CACHE non-nil means don't invalidate the
|
|
341 summary-of slot for any messages marked for update. This is
|
|
342 meant to be used by functions that update message information
|
|
343 that is not cached in the summary-of slot, e.g. message numbers
|
|
344 and thread indentation." nil nil)
|
|
345
|
|
346 (autoload (quote vm-force-mode-line-update) "vm-folder" "Force a mode line update in all frames." nil nil)
|
|
347
|
|
348 (autoload (quote vm-do-needed-mode-line-update) "vm-folder" "Do a modeline update for the current folder buffer.
|
|
349 This means setting up all the various vm-ml attribute variables
|
|
350 in the folder buffer and copying necessary variables to the
|
98
|
351 folder buffer's summary and presentation buffers, and then
|
|
352 forcing Emacs to update all modelines.
|
|
353
|
|
354 If a virtual folder being updated has no messages, then
|
|
355 erase-buffer is called on its buffer.
|
|
356
|
|
357 If any type of folder is empty, erase-buffer is called
|
|
358 on its presentation buffer, if any." nil nil)
|
0
|
359
|
|
360 (autoload (quote vm-update-summary-and-mode-line) "vm-folder" "Update summary and mode line for all VM folder and summary buffers.
|
|
361 Really this updates all the visible status indicators.
|
|
362
|
|
363 Message lists are renumbered.
|
|
364 Summary entries are wiped and regenerated.
|
|
365 Mode lines are updated.
|
|
366 Toolbars are updated." nil nil)
|
|
367
|
|
368 (autoload (quote vm-reverse-link-messages) "vm-folder" "Set reverse links for all messages in vm-message-list." nil nil)
|
|
369
|
|
370 (autoload (quote vm-match-ordered-header) "vm-folder" "Try to match a header in ALIST and return the matching cell.
|
|
371 This is used by header ordering code.
|
|
372
|
|
373 ALIST looks like this ((\"From\") (\"To\")). This function returns
|
|
374 the alist element whose car matches the header starting at point.
|
|
375 The header ordering code uses the cdr of the element
|
|
376 returned to hold headers to be output later." nil nil)
|
|
377
|
|
378 (autoload (quote vm-match-header) "vm-folder" "Match a header and save some state information about the matched header.
|
|
379 Optional first arg HEADER-NAME means match the header only
|
|
380 if it matches HEADER-NAME. HEADER-NAME should be a string
|
|
381 containing a header name. The string should end with a colon if just
|
|
382 that name should be matched. A string that does not end in a colon
|
|
383 will match all headers that begin with that string.
|
|
384
|
|
385 State information is stored in vm-matched-header-vector bound to a vector
|
|
386 of this form.
|
|
387
|
|
388 [ header-start header-end
|
|
389 header-name-start header-name-end
|
|
390 header-contents-start header-contents-end ]
|
|
391
|
|
392 Elements are integers.
|
|
393 There are functions to access and use this info." nil nil)
|
|
394
|
|
395 (autoload (quote vm-matched-header) "vm-folder" "Returns the header last matched by vm-match-header.
|
|
396 Trailing newline is included." nil nil)
|
|
397
|
|
398 (autoload (quote vm-matched-header-name) "vm-folder" "Returns the name of the header last matched by vm-match-header." nil nil)
|
|
399
|
|
400 (autoload (quote vm-matched-header-contents) "vm-folder" "Returns the contents of the header last matched by vm-match-header.
|
|
401 Trailing newline is not included." nil nil)
|
|
402
|
|
403 (autoload (quote vm-matched-header-start) "vm-folder" "Returns the start position of the header last matched by vm-match-header." nil nil)
|
|
404
|
|
405 (autoload (quote vm-matched-header-end) "vm-folder" "Returns the end position of the header last matched by vm-match-header." nil nil)
|
|
406
|
|
407 (autoload (quote vm-matched-header-name-start) "vm-folder" "Returns the start position of the name of the header last matched
|
|
408 by vm-match-header." nil nil)
|
|
409
|
|
410 (autoload (quote vm-matched-header-name-end) "vm-folder" "Returns the end position of the name of the header last matched
|
|
411 by vm-match-header." nil nil)
|
|
412
|
|
413 (autoload (quote vm-matched-header-contents-start) "vm-folder" "Returns the start position of the contents of the header last matched
|
|
414 by vm-match-header." nil nil)
|
|
415
|
|
416 (autoload (quote vm-matched-header-contents-end) "vm-folder" "Returns the end position of the contents of the header last matched
|
|
417 by vm-match-header." nil nil)
|
|
418
|
|
419 (autoload (quote vm-get-folder-type) "vm-folder" "Return a symbol indicating the folder type of the current buffer.
|
|
420 This function works by examining the beginning of a folder.
|
|
421 If optional arg FILE is present the type of FILE is returned instead.
|
|
422 If optional second and third arg START and END are provided,
|
98
|
423 vm-get-folder-type will examine the text between those buffer
|
0
|
424 positions. START and END default to 1 and (buffer-size) + 1.
|
|
425
|
|
426 Returns
|
|
427 nil if folder has no type (empty)
|
|
428 unknown if the type is not known to VM
|
|
429 mmdf for MMDF folders
|
|
430 babyl for BABYL folders
|
|
431 From_ for UNIX From_ folders
|
|
432
|
|
433 If vm-trust-From_-with-Content-Length is non-nil,
|
|
434 From_-with-Content-Length is returned if the first message in the
|
|
435 folder has a Content-Length header and the folder otherwise looks
|
|
436 like a From_ folder." nil nil)
|
|
437
|
|
438 (autoload (quote vm-convert-folder-type) "vm-folder" "Convert buffer from OLD-TYPE to NEW-TYPE.
|
|
439 OLD-TYPE and NEW-TYPE should be symbols returned from vm-get-folder-type.
|
|
440 This should be called on non-live buffers like crash boxes.
|
|
441 This will confuse VM if called on a folder buffer in vm-mode." nil nil)
|
|
442
|
|
443 (autoload (quote vm-convert-folder-header) "vm-folder" "Convert the folder header form OLD-TYPE to NEW-TYPE.
|
|
444 The folder header is the text at the beginning of a folder that
|
|
445 is a legal part of the folder but is not part of the first
|
|
446 message. This is for dealing with BABYL files." nil nil)
|
|
447
|
|
448 (autoload (quote vm-skip-past-folder-header) "vm-folder" "Move point past the folder header.
|
|
449 The folder header is the text at the beginning of a folder that
|
|
450 is a legal part of the folder but is not part of the first
|
|
451 message. This is for dealing with BABYL files." nil nil)
|
|
452
|
|
453 (autoload (quote vm-convert-folder-type-headers) "vm-folder" "Convert headers in the message around point from OLD-TYPE to NEW-TYPE.
|
|
454 This means to add/delete Content-Length and any other
|
|
455 headers related to folder-type as needed for folder type
|
|
456 conversions. This function expects point to be at the beginning
|
|
457 of the header section of a message, and it only deals with that
|
|
458 message." nil nil)
|
|
459
|
|
460 (autoload (quote vm-munge-message-separators) "vm-folder" "Munge message separators of FOLDER-TYPE found between START and END.
|
|
461 This function is used to eliminate message separators for a particular
|
|
462 folder type that happen to occur in a message. \">\" is prepended to such
|
|
463 separators." nil nil)
|
|
464
|
|
465 (autoload (quote vm-compatible-folder-p) "vm-folder" "Return non-nil if FILE is a compatible folder with the current buffer.
|
|
466 The current folder must have vm-folder-type initialized.
|
|
467 FILE is compatible if
|
|
468 - it is empty
|
|
469 - the current folder is empty
|
|
470 - the two folder types are equal" nil nil)
|
|
471
|
|
472 (autoload (quote vm-leading-message-separator) "vm-folder" "Returns a leading message separator for the current folder.
|
|
473 Defaults to returning a separator for the current folder type.
|
|
474
|
|
475 Optional first arg FOLDER-TYPE means return a separator for that
|
|
476 folder type instead.
|
|
477
|
|
478 Optional second arg MESSAGE should be a message struct. This is used
|
|
479 generating BABYL separators, because they contain message attributes
|
|
480 and labels that must must be copied from the message.
|
|
481
|
|
482 Optional third arg FOR-OTHER-FOLDER non-nil means that this separator will
|
|
483 be used a `foreign' folder. This means that the `deleted'
|
|
484 attributes should not be copied for BABYL folders." nil nil)
|
|
485
|
|
486 (autoload (quote vm-trailing-message-separator) "vm-folder" "Returns a leading message separator for the current folder.
|
|
487 Defaults to returning a separator for the current folder type.
|
|
488
|
|
489 Optional first arg FOLDER-TYPE means return a separator for that
|
|
490 folder type instead." nil nil)
|
|
491
|
|
492 (autoload (quote vm-folder-header) "vm-folder" "Returns a folder header for the current folder.
|
|
493 Defaults to returning a folder header for the current folder type.
|
|
494
|
|
495 Optional first arg FOLDER-TYPE means return a folder header for that
|
|
496 folder type instead.
|
|
497
|
|
498 Optional second arg LABEL-OBARRAY should be an obarray of labels
|
|
499 that have been used in this folder. This is used for BABYL folders." nil nil)
|
|
500
|
|
501 (autoload (quote vm-find-leading-message-separator) "vm-folder" "Find the next leading message separator in a folder.
|
|
502 Returns non-nil if the separator is found, nil otherwise." nil nil)
|
|
503
|
|
504 (autoload (quote vm-find-trailing-message-separator) "vm-folder" "Find the next trailing message separator in a folder." nil nil)
|
|
505
|
|
506 (autoload (quote vm-skip-past-leading-message-separator) "vm-folder" "Move point past a leading message separator at point." nil nil)
|
|
507
|
|
508 (autoload (quote vm-skip-past-trailing-message-separator) "vm-folder" "Move point past a trailing message separator at point." nil nil)
|
|
509
|
|
510 (autoload (quote vm-build-message-list) "vm-folder" "Build a chain of message structures, stored them in vm-message-list.
|
|
511 Finds the start and end of each message and fills in the relevant
|
|
512 fields in the message structures.
|
|
513
|
|
514 Also finds the beginning of the header section and the end of the
|
|
515 text section and fills in these fields in the message structures.
|
|
516
|
|
517 vm-text-of and vm-vheaders-of field don't get filled until they
|
|
518 are needed.
|
|
519
|
|
520 If vm-message-list already contained messages, the end of the last
|
|
521 known message is found and then the parsing of new messages begins
|
|
522 there and the message are appended to vm-message-list.
|
|
523
|
|
524 vm-folder-type is initialized here." nil nil)
|
|
525
|
|
526 (autoload (quote vm-build-header-order-alist) "vm-folder" nil nil nil)
|
|
527
|
|
528 (autoload (quote vm-reorder-message-headers) "vm-folder" nil nil nil)
|
|
529
|
|
530 (autoload (quote vm-read-attributes) "vm-folder" nil nil nil)
|
|
531
|
|
532 (autoload (quote vm-read-babyl-attributes) "vm-folder" nil nil nil)
|
|
533
|
|
534 (autoload (quote vm-set-default-attributes) "vm-folder" nil nil nil)
|
|
535
|
|
536 (autoload (quote vm-emit-totals-blurb) "vm-folder" nil nil nil)
|
|
537
|
|
538 (autoload (quote vm-convert-v4-attributes) "vm-folder" nil nil nil)
|
|
539
|
|
540 (autoload (quote vm-gobble-labels) "vm-folder" nil nil nil)
|
|
541
|
|
542 (autoload (quote vm-gobble-bookmark) "vm-folder" nil nil nil)
|
|
543
|
|
544 (autoload (quote vm-gobble-visible-header-variables) "vm-folder" nil nil nil)
|
|
545
|
|
546 (autoload (quote vm-gobble-message-order) "vm-folder" nil nil nil)
|
|
547
|
|
548 (autoload (quote vm-gobble-summary) "vm-folder" nil nil nil)
|
|
549
|
|
550 (autoload (quote vm-stuff-attributes) "vm-folder" nil nil nil)
|
|
551
|
98
|
552 (autoload (quote vm-stuff-folder-attributes) "vm-folder" nil nil nil)
|
|
553
|
0
|
554 (autoload (quote vm-stuff-babyl-attributes) "vm-folder" nil nil nil)
|
|
555
|
|
556 (autoload (quote vm-babyl-attributes-string) "vm-folder" nil nil nil)
|
|
557
|
|
558 (autoload (quote vm-babyl-labels-string) "vm-folder" nil nil nil)
|
|
559
|
|
560 (autoload (quote vm-stuff-virtual-attributes) "vm-folder" nil nil nil)
|
|
561
|
|
562 (autoload (quote vm-stuff-labels) "vm-folder" nil nil nil)
|
|
563
|
|
564 (autoload (quote vm-stuff-bookmark) "vm-folder" nil nil nil)
|
|
565
|
|
566 (autoload (quote vm-stuff-summary) "vm-folder" nil nil nil)
|
|
567
|
|
568 (autoload (quote vm-stuff-header-variables) "vm-folder" nil nil nil)
|
|
569
|
|
570 (autoload (quote vm-stuff-message-order) "vm-folder" nil nil nil)
|
|
571
|
|
572 (autoload (quote vm-remove-message-order) "vm-folder" nil nil nil)
|
|
573
|
|
574 (autoload (quote vm-change-all-new-to-unread) "vm-folder" nil nil nil)
|
|
575
|
|
576 (autoload (quote vm-unread-message) "vm-folder" "Set the `unread' attribute for the current message. If the message is
|
|
577 already new or unread, then it is left unchanged.
|
|
578
|
|
579 Numeric prefix argument N means to unread the current message plus the
|
|
580 next N-1 messages. A negative N means unread the current message and
|
|
581 the previous N-1 messages.
|
|
582
|
|
583 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
584 all marked messages are affected, other messages are ignored." t nil)
|
|
585
|
|
586 (autoload (quote vm-quit-just-bury) "vm-folder" "Bury the current VM folder and summary buffers.
|
|
587 The folder is not altered and Emacs is still visiting it. You
|
|
588 can switch back to it with switch-to-buffer or by using the
|
|
589 Buffer Menu." t nil)
|
|
590
|
|
591 (autoload (quote vm-quit-just-iconify) "vm-folder" "Iconify the frame and bury the current VM folder and summary buffers.
|
|
592 The folder is not altered and Emacs is still visiting it." t nil)
|
|
593
|
76
|
594 (autoload (quote vm-quit-no-change) "vm-folder" "Quit visiting the current folder without saving changes made to the folder." t nil)
|
|
595
|
|
596 (autoload (quote vm-quit) "vm-folder" "Quit visiting the current folder, saving changes. Deleted messages are not expunged." t nil)
|
0
|
597
|
|
598 (autoload (quote vm-start-itimers-if-needed) "vm-folder" nil nil nil)
|
|
599
|
118
|
600 (autoload (quote vm-timer-using) "vm-folder" nil nil nil)
|
|
601
|
110
|
602 (autoload (quote vm-check-mail-itimer-function) "vm-folder" nil nil nil)
|
|
603
|
0
|
604 (autoload (quote vm-get-mail-itimer-function) "vm-folder" nil nil nil)
|
|
605
|
|
606 (autoload (quote vm-flush-itimer-function) "vm-folder" nil nil nil)
|
|
607
|
|
608 (autoload (quote vm-flush-cached-data) "vm-folder" nil nil nil)
|
|
609
|
|
610 (autoload (quote vm-write-file-hook) "vm-folder" nil nil nil)
|
|
611
|
|
612 (autoload (quote vm-save-buffer) "vm-folder" nil t nil)
|
|
613
|
|
614 (autoload (quote vm-write-file) "vm-folder" nil t nil)
|
|
615
|
|
616 (autoload (quote vm-save-folder) "vm-folder" "Save current folder to disk.
|
|
617 Deleted messages are not expunged.
|
|
618 Prefix arg is handled the same as for the command save-buffer.
|
|
619
|
|
620 When applied to a virtual folder, this command runs itself on
|
|
621 each of the underlying real folders associated with the virtual
|
|
622 folder." t nil)
|
|
623
|
|
624 (autoload (quote vm-save-and-expunge-folder) "vm-folder" "Expunge folder, then save it to disk.
|
|
625 Prefix arg is handled the same as for the command save-buffer.
|
|
626 Expunge won't be done if folder is read-only.
|
|
627
|
|
628 When applied to a virtual folder, this command works as if you had
|
|
629 run vm-expunge-folder followed by vm-save-folder." t nil)
|
|
630
|
|
631 (autoload (quote vm-handle-file-recovery-or-reversion) "vm-folder" nil nil nil)
|
|
632
|
|
633 (autoload (quote vm-handle-file-recovery) "vm-folder" nil nil nil)
|
|
634
|
|
635 (autoload (quote vm-handle-file-reversion) "vm-folder" nil nil nil)
|
|
636
|
|
637 (autoload (quote vm-after-revert-buffer-hook) "vm-folder" nil nil nil)
|
|
638
|
|
639 (autoload (quote vm-help) "vm-folder" "Display help for various VM activities." t nil)
|
|
640
|
|
641 (autoload (quote vm-spool-move-mail) "vm-folder" nil nil nil)
|
|
642
|
|
643 (autoload (quote vm-gobble-crash-box) "vm-folder" nil nil nil)
|
|
644
|
110
|
645 (autoload (quote vm-compute-spool-files) "vm-folder" nil nil nil)
|
|
646
|
|
647 (autoload (quote vm-spool-check-mail) "vm-folder" nil nil nil)
|
|
648
|
|
649 (autoload (quote vm-check-for-spooled-mail) "vm-folder" nil nil nil)
|
|
650
|
0
|
651 (autoload (quote vm-get-spooled-mail) "vm-folder" nil nil nil)
|
|
652
|
|
653 (autoload (quote vm-safe-popdrop-string) "vm-folder" nil nil nil)
|
|
654
|
|
655 (autoload (quote vm-get-new-mail) "vm-folder" "Move any new mail that has arrived in any of the spool files for the
|
|
656 current folder into the folder. New mail is appended to the disk
|
|
657 and buffer copies of the folder.
|
|
658
|
|
659 Prefix arg means to gather mail from a user specified folder, instead of
|
|
660 the usual spool files. The file name will be read from the minibuffer.
|
|
661 Unlike when getting mail from a spool file, the source file is left
|
|
662 undisturbed after its messages have been copied.
|
|
663
|
|
664 When applied to a virtual folder, this command runs itself on
|
|
665 each of the underlying real folders associated with this virtual folder.
|
|
666 A prefix argument has no effect; mail is always gathered from the
|
|
667 spool files." t nil)
|
|
668
|
|
669 (autoload (quote vm-assimilate-new-messages) "vm-folder" nil nil nil)
|
|
670
|
|
671 (autoload (quote vm-select-marked-or-prefixed-messages) "vm-folder" nil nil nil)
|
|
672
|
|
673 (autoload (quote vm-display-startup-message) "vm-folder" nil nil nil)
|
|
674
|
|
675 (autoload (quote vm-load-init-file) "vm-folder" nil t nil)
|
|
676
|
|
677 (autoload (quote vm-session-initialization) "vm-folder" nil nil nil)
|
|
678
|
|
679 (autoload (quote vm-toggle-read-only) "vm-folder" nil t nil)
|
|
680
|
|
681 (autoload (quote vm-mode-internal) "vm-folder" nil nil nil)
|
|
682
|
|
683 (autoload (quote vm-link-to-virtual-buffers) "vm-folder" nil nil nil)
|
|
684
|
|
685 (autoload (quote vm-change-folder-type) "vm-folder" "Change folder type to TYPE.
|
|
686 TYPE may be one of the following symbol values:
|
|
687
|
|
688 From_
|
|
689 From_-with-Content-Length
|
|
690 mmdf
|
|
691 babyl
|
|
692
|
|
693 Interactively TYPE will be read from the minibuffer." t nil)
|
|
694
|
98
|
695 (autoload (quote vm-garbage-collect-folder) "vm-folder" nil nil nil)
|
|
696
|
|
697 (autoload (quote vm-garbage-collect-message) "vm-folder" nil nil nil)
|
|
698
|
0
|
699 (autoload (quote vm-show-copying-restrictions) "vm-license" nil t nil)
|
|
700
|
|
701 (autoload (quote vm-show-no-warranty) "vm-license" "Display \"NO WARRANTY\" section of the GNU General Public License." t nil)
|
|
702
|
|
703 (autoload (quote vm-clear-all-marks) "vm-mark" "Removes all message marks in the current folder." t nil)
|
|
704
|
|
705 (autoload (quote vm-mark-all-messages) "vm-mark" "Mark all messages in the current folder." t nil)
|
|
706
|
|
707 (autoload (quote vm-mark-message) "vm-mark" "Mark the current message.
|
|
708 Numeric prefix argument N means mark the current message and the next
|
|
709 N-1 messages. A negative N means mark the current message and the
|
|
710 previous N-1 messages." t nil)
|
|
711
|
|
712 (autoload (quote vm-unmark-message) "vm-mark" "Remove the mark from the current message.
|
|
713 Numeric prefix argument N means unmark the current message and the next
|
|
714 N-1 messages. A negative N means unmark the current message and the
|
|
715 previous N-1 messages." t nil)
|
|
716
|
98
|
717 (autoload (quote vm-mark-summary-region) "vm-mark" "Mark all messages with summary lines contained in the region." t nil)
|
|
718
|
|
719 (autoload (quote vm-unmark-summary-region) "vm-mark" "Remove marks from messages with summary lines contained in the region." t nil)
|
|
720
|
|
721 (autoload (quote vm-mark-or-unmark-summary-region) "vm-mark" nil nil nil)
|
|
722
|
0
|
723 (autoload (quote vm-mark-or-unmark-messages-with-selector) "vm-mark" nil nil nil)
|
|
724
|
|
725 (autoload (quote vm-mark-matching-messages) "vm-mark" "Mark messages matching some criterion.
|
|
726 You can use any of the virtual folder selectors, except for the
|
|
727 `and', `or' and `not' selectors. See the documentation for the
|
|
728 variable vm-virtual-folder-alist for more information." t nil)
|
|
729
|
|
730 (autoload (quote vm-unmark-matching-messages) "vm-mark" "Unmark messages matching some criterion.
|
|
731 You can use any of the virtual folder selectors, except for the
|
|
732 `and', `or' and `not' selectors. See the documentation for the
|
|
733 variable vm-virtual-folder-alist for more information." t nil)
|
|
734
|
|
735 (autoload (quote vm-mark-thread-subtree) "vm-mark" "Mark all messages in the thread tree rooted at the current message." t nil)
|
|
736
|
|
737 (autoload (quote vm-unmark-thread-subtree) "vm-mark" "Unmark all messages in the thread tree rooted at the current message." t nil)
|
|
738
|
|
739 (autoload (quote vm-mark-or-unmark-thread-subtree) "vm-mark" nil nil nil)
|
|
740
|
|
741 (autoload (quote vm-mark-messages-same-subject) "vm-mark" "Mark all messages with the same subject as the current message." t nil)
|
|
742
|
|
743 (autoload (quote vm-unmark-messages-same-subject) "vm-mark" "Unmark all messages with the same subject as the current message." t nil)
|
|
744
|
|
745 (autoload (quote vm-mark-or-unmark-messages-same-subject) "vm-mark" nil nil nil)
|
|
746
|
|
747 (autoload (quote vm-mark-messages-same-author) "vm-mark" "Mark all messages with the same author as the current message." t nil)
|
|
748
|
|
749 (autoload (quote vm-unmark-messages-same-author) "vm-mark" "Unmark all messages with the same author as the current message." t nil)
|
|
750
|
|
751 (autoload (quote vm-mark-or-unmark-messages-same-author) "vm-mark" nil nil nil)
|
|
752
|
|
753 (autoload (quote vm-next-command-uses-marks) "vm-mark" "Does nothing except insure that the next VM command will operate only
|
110
|
754 on the marked messages in the current folder. This only works for
|
|
755 commands bound to key, menu or button press events. M-x vm-command will
|
|
756 not work." t nil)
|
0
|
757
|
|
758 (autoload (quote vm-marked-messages) "vm-mark" nil nil nil)
|
|
759
|
|
760 (autoload (quote vm-mark-help) "vm-mark" nil t nil)
|
|
761
|
|
762 (autoload (quote vm-menu-fsfemacs-menus-p) "vm-menu" nil nil nil)
|
|
763
|
|
764 (autoload (quote vm-menu-xemacs-menus-p) "vm-menu" nil nil nil)
|
|
765
|
|
766 (autoload (quote vm-fsfemacs-19-p) "vm-menu" nil nil nil)
|
|
767
|
|
768 (autoload (quote vm-menu-run-command) "vm-menu" "Run COMMAND almost interactively, with ARGS.
|
|
769 call-interactive can't be used unfortunately, but this-command is
|
|
770 set to the command name so that window configuration will be done." nil nil)
|
|
771
|
|
772 (autoload (quote vm-menu-can-revert-p) "vm-menu" nil nil nil)
|
|
773
|
|
774 (autoload (quote vm-menu-can-recover-p) "vm-menu" nil nil nil)
|
|
775
|
|
776 (autoload (quote vm-menu-can-save-p) "vm-menu" nil nil nil)
|
|
777
|
|
778 (autoload (quote vm-menu-can-get-new-mail-p) "vm-menu" nil nil nil)
|
|
779
|
|
780 (autoload (quote vm-menu-can-undo-p) "vm-menu" nil nil nil)
|
|
781
|
98
|
782 (autoload (quote vm-menu-can-decode-mime-p) "vm-menu" nil nil nil)
|
|
783
|
0
|
784 (autoload (quote vm-menu-yank-original) "vm-menu" nil t nil)
|
|
785
|
|
786 (autoload (quote vm-menu-can-send-mail-p) "vm-menu" nil nil nil)
|
|
787
|
|
788 (autoload (quote vm-menu-create-subject-virtual-folder) "vm-menu" nil t nil)
|
|
789
|
|
790 (autoload (quote vm-menu-create-author-virtual-folder) "vm-menu" nil t nil)
|
|
791
|
|
792 (autoload (quote vm-menu-xemacs-global-menubar) "vm-menu" nil nil nil)
|
|
793
|
|
794 (autoload (quote vm-menu-fsfemacs-global-menubar) "vm-menu" nil nil nil)
|
|
795
|
|
796 (autoload (quote vm-menu-initialize-vm-mode-menu-map) "vm-menu" nil nil nil)
|
|
797
|
|
798 (autoload (quote vm-menu-make-xemacs-menubar) "vm-menu" nil nil nil)
|
|
799
|
|
800 (autoload (quote vm-menu-popup-mode-menu) "vm-menu" nil t nil)
|
|
801
|
|
802 (autoload (quote vm-menu-popup-context-menu) "vm-menu" nil t nil)
|
|
803
|
110
|
804 (autoload (quote vm-menu-goto-event) "vm-menu" nil nil nil)
|
|
805
|
0
|
806 (autoload (quote vm-menu-popup-url-browser-menu) "vm-menu" nil t nil)
|
|
807
|
118
|
808 (autoload (quote vm-menu-popup-mailto-url-browser-menu) "vm-menu" nil t nil)
|
|
809
|
98
|
810 (autoload (quote vm-menu-popup-mime-dispose-menu) "vm-menu" nil t nil)
|
|
811
|
110
|
812 (autoload (quote vm-menu-popup-content-disposition-menu) "vm-menu" nil t nil)
|
|
813
|
0
|
814 (autoload (quote vm-menu-popup-fsfemacs-menu) "vm-menu" nil t nil)
|
|
815
|
|
816 (autoload (quote vm-menu-mode-menu) "vm-menu" nil nil nil)
|
|
817
|
|
818 (autoload (quote vm-menu-set-menubar-dirty-flag) "vm-menu" nil nil nil)
|
|
819
|
|
820 (autoload (quote vm-menu-toggle-menubar) "vm-menu" nil t nil)
|
|
821
|
|
822 (autoload (quote vm-menu-install-menubar) "vm-menu" nil nil nil)
|
|
823
|
|
824 (autoload (quote vm-menu-install-menubar-item) "vm-menu" nil nil nil)
|
|
825
|
|
826 (autoload (quote vm-menu-install-vm-mode-menu) "vm-menu" nil nil nil)
|
|
827
|
|
828 (autoload (quote vm-menu-install-mail-mode-menu) "vm-menu" nil nil nil)
|
|
829
|
|
830 (autoload (quote vm-menu-install-menus) "vm-menu" nil nil nil)
|
|
831
|
|
832 (autoload (quote vm-menu-install-known-virtual-folders-menu) "vm-menu" nil nil nil)
|
|
833
|
|
834 (autoload (quote vm-menu-install-visited-folders-menu) "vm-menu" nil nil nil)
|
|
835
|
|
836 (autoload (quote vm-menu-hm-delete-folder) "vm-menu" "Query deletes a folder." t nil)
|
|
837
|
|
838 (autoload (quote vm-menu-hm-rename-folder) "vm-menu" "Rename a folder." t nil)
|
|
839
|
|
840 (autoload (quote vm-menu-hm-create-dir) "vm-menu" "Create a subdir in PARENT-DIR." t nil)
|
|
841
|
|
842 (autoload (quote vm-menu-hm-make-folder-menu) "vm-menu" "Makes a menu with the mail folders of the directory `vm-folder-directory'." t nil)
|
|
843
|
|
844 (autoload (quote vm-menu-hm-install-menu) "vm-menu" nil nil nil)
|
|
845
|
|
846 (autoload (quote vm-menu-hm-tree-ls-in-temp-buffer) "vm-menu" "List the directory DIR in the TEMP-BUFFER." nil nil)
|
|
847
|
|
848 (autoload (quote vm-menu-hm-tree-make-file-list-1) "vm-menu" nil nil nil)
|
|
849
|
|
850 (autoload (quote vm-menu-hm-tree-menu-file-truename) "vm-menu" nil nil nil)
|
|
851
|
|
852 (autoload (quote vm-menu-hm-tree-make-file-list) "vm-menu" "Makes a list with the files and subdirectories of DIR.
|
|
853 The list looks like: ((dirname1 file1 file2)
|
|
854 file3
|
|
855 (dirname2 (dirname3 file4 file5) file6))" nil nil)
|
|
856
|
|
857 (autoload (quote vm-menu-hm-tree-hide-file-p) "vm-menu" "t, if one of the regexps in RE-HIDDEN-FILE-LIST matches the FILENAME." nil nil)
|
|
858
|
|
859 (autoload (quote vm-menu-hm-tree-make-menu) "vm-menu" "Returns a menu list.
|
|
860 Each item of the menu list has the form
|
|
861 [\"subdir\" (FUNCTION \"dir\") SELECTABLE].
|
|
862 Hidden directories (with a leading point) are suppressed,
|
|
863 if NO-HIDDEN-DIRS are non nil. Also all files which are
|
|
864 matching a regexp in RE-HIDDEN-FILE-LIST are suppressed.
|
|
865 If INCLUDE-CURRENT-DIR non nil, then an additional command
|
|
866 for the current directory (.) is inserted." nil nil)
|
|
867
|
70
|
868 (autoload (quote vm-location-data-of) "vm-message" nil nil t)
|
|
869
|
|
870 (autoload (quote vm-start-of) "vm-message" nil nil t)
|
|
871
|
|
872 (autoload (quote vm-headers-of) "vm-message" nil nil t)
|
0
|
873
|
|
874 (autoload (quote vm-vheaders-of) "vm-message" nil nil nil)
|
|
875
|
|
876 (autoload (quote vm-text-of) "vm-message" nil nil nil)
|
|
877
|
70
|
878 (autoload (quote vm-text-end-of) "vm-message" nil nil t)
|
|
879
|
|
880 (autoload (quote vm-end-of) "vm-message" nil nil t)
|
|
881
|
|
882 (autoload (quote vm-softdata-of) "vm-message" nil nil t)
|
|
883
|
|
884 (autoload (quote vm-number-of) "vm-message" nil nil t)
|
|
885
|
|
886 (autoload (quote vm-padded-number-of) "vm-message" nil nil t)
|
|
887
|
|
888 (autoload (quote vm-mark-of) "vm-message" nil nil t)
|
|
889
|
|
890 (autoload (quote vm-su-start-of) "vm-message" nil nil t)
|
|
891
|
|
892 (autoload (quote vm-su-end-of) "vm-message" nil nil t)
|
|
893
|
|
894 (autoload (quote vm-real-message-sym-of) "vm-message" nil nil t)
|
|
895
|
|
896 (autoload (quote vm-real-message-of) "vm-message" nil nil t)
|
|
897
|
|
898 (autoload (quote vm-reverse-link-of) "vm-message" nil nil t)
|
|
899
|
|
900 (autoload (quote vm-message-type-of) "vm-message" nil nil t)
|
|
901
|
|
902 (autoload (quote vm-message-id-number-of) "vm-message" nil nil t)
|
|
903
|
|
904 (autoload (quote vm-buffer-of) "vm-message" nil nil t)
|
|
905
|
|
906 (autoload (quote vm-thread-indentation-of) "vm-message" nil nil t)
|
|
907
|
|
908 (autoload (quote vm-thread-list-of) "vm-message" nil nil t)
|
|
909
|
|
910 (autoload (quote vm-babyl-frob-flag-of) "vm-message" nil nil t)
|
|
911
|
|
912 (autoload (quote vm-saved-virtual-attributes-of) "vm-message" nil nil t)
|
|
913
|
|
914 (autoload (quote vm-saved-virtual-mirror-data-of) "vm-message" nil nil t)
|
|
915
|
|
916 (autoload (quote vm-virtual-summary-of) "vm-message" nil nil t)
|
|
917
|
98
|
918 (autoload (quote vm-mime-layout-of) "vm-message" nil nil t)
|
|
919
|
|
920 (autoload (quote vm-mime-encoded-header-flag-of) "vm-message" nil nil t)
|
|
921
|
70
|
922 (autoload (quote vm-attributes-of) "vm-message" nil nil t)
|
|
923
|
|
924 (autoload (quote vm-new-flag) "vm-message" nil nil t)
|
|
925
|
|
926 (autoload (quote vm-unread-flag) "vm-message" nil nil t)
|
|
927
|
|
928 (autoload (quote vm-deleted-flag) "vm-message" nil nil t)
|
|
929
|
|
930 (autoload (quote vm-filed-flag) "vm-message" nil nil t)
|
|
931
|
|
932 (autoload (quote vm-replied-flag) "vm-message" nil nil t)
|
|
933
|
|
934 (autoload (quote vm-written-flag) "vm-message" nil nil t)
|
|
935
|
|
936 (autoload (quote vm-forwarded-flag) "vm-message" nil nil t)
|
|
937
|
|
938 (autoload (quote vm-edited-flag) "vm-message" nil nil t)
|
|
939
|
|
940 (autoload (quote vm-redistributed-flag) "vm-message" nil nil t)
|
|
941
|
|
942 (autoload (quote vm-cache-of) "vm-message" nil nil t)
|
|
943
|
|
944 (autoload (quote vm-byte-count-of) "vm-message" nil nil t)
|
|
945
|
|
946 (autoload (quote vm-weekday-of) "vm-message" nil nil t)
|
|
947
|
|
948 (autoload (quote vm-monthday-of) "vm-message" nil nil t)
|
|
949
|
|
950 (autoload (quote vm-month-of) "vm-message" nil nil t)
|
|
951
|
|
952 (autoload (quote vm-year-of) "vm-message" nil nil t)
|
|
953
|
|
954 (autoload (quote vm-hour-of) "vm-message" nil nil t)
|
|
955
|
|
956 (autoload (quote vm-zone-of) "vm-message" nil nil t)
|
|
957
|
|
958 (autoload (quote vm-full-name-of) "vm-message" nil nil t)
|
|
959
|
|
960 (autoload (quote vm-from-of) "vm-message" nil nil t)
|
|
961
|
|
962 (autoload (quote vm-message-id-of) "vm-message" nil nil t)
|
|
963
|
|
964 (autoload (quote vm-line-count-of) "vm-message" nil nil t)
|
|
965
|
|
966 (autoload (quote vm-subject-of) "vm-message" nil nil t)
|
|
967
|
|
968 (autoload (quote vm-vheaders-regexp-of) "vm-message" nil nil t)
|
|
969
|
|
970 (autoload (quote vm-to-of) "vm-message" nil nil t)
|
|
971
|
|
972 (autoload (quote vm-to-names-of) "vm-message" nil nil t)
|
|
973
|
|
974 (autoload (quote vm-month-number-of) "vm-message" nil nil t)
|
|
975
|
|
976 (autoload (quote vm-sortable-datestring-of) "vm-message" nil nil t)
|
|
977
|
|
978 (autoload (quote vm-sortable-subject-of) "vm-message" nil nil t)
|
|
979
|
|
980 (autoload (quote vm-summary-of) "vm-message" nil nil t)
|
|
981
|
|
982 (autoload (quote vm-parent-of) "vm-message" nil nil t)
|
|
983
|
114
|
984 (autoload (quote vm-references-of) "vm-message" nil nil t)
|
|
985
|
70
|
986 (autoload (quote vm-mirror-data-of) "vm-message" nil nil t)
|
|
987
|
|
988 (autoload (quote vm-edit-buffer-of) "vm-message" nil nil t)
|
|
989
|
|
990 (autoload (quote vm-virtual-messages-of) "vm-message" nil nil t)
|
|
991
|
|
992 (autoload (quote vm-modflag-of) "vm-message" nil nil t)
|
|
993
|
|
994 (autoload (quote vm-labels-of) "vm-message" nil nil t)
|
|
995
|
|
996 (autoload (quote vm-label-string-of) "vm-message" nil nil t)
|
|
997
|
|
998 (autoload (quote vm-set-location-data-of) "vm-message" nil nil t)
|
|
999
|
|
1000 (autoload (quote vm-set-start-of) "vm-message" nil nil t)
|
|
1001
|
|
1002 (autoload (quote vm-set-headers-of) "vm-message" nil nil t)
|
|
1003
|
|
1004 (autoload (quote vm-set-vheaders-of) "vm-message" nil nil t)
|
|
1005
|
|
1006 (autoload (quote vm-set-text-of) "vm-message" nil nil t)
|
|
1007
|
|
1008 (autoload (quote vm-set-text-end-of) "vm-message" nil nil t)
|
|
1009
|
|
1010 (autoload (quote vm-set-end-of) "vm-message" nil nil t)
|
|
1011
|
|
1012 (autoload (quote vm-set-softdata-of) "vm-message" nil nil t)
|
|
1013
|
|
1014 (autoload (quote vm-set-number-of) "vm-message" nil nil t)
|
|
1015
|
|
1016 (autoload (quote vm-set-padded-number-of) "vm-message" nil nil t)
|
|
1017
|
|
1018 (autoload (quote vm-set-mark-of) "vm-message" nil nil t)
|
|
1019
|
|
1020 (autoload (quote vm-set-su-start-of) "vm-message" nil nil t)
|
|
1021
|
|
1022 (autoload (quote vm-set-su-end-of) "vm-message" nil nil t)
|
|
1023
|
|
1024 (autoload (quote vm-set-real-message-sym-of) "vm-message" nil nil t)
|
|
1025
|
|
1026 (autoload (quote vm-set-reverse-link-of) "vm-message" nil nil t)
|
|
1027
|
|
1028 (autoload (quote vm-set-reverse-link-sym-of) "vm-message" nil nil t)
|
|
1029
|
|
1030 (autoload (quote vm-set-message-type-of) "vm-message" nil nil t)
|
|
1031
|
|
1032 (autoload (quote vm-set-message-id-number-of) "vm-message" nil nil t)
|
|
1033
|
|
1034 (autoload (quote vm-set-buffer-of) "vm-message" nil nil t)
|
|
1035
|
|
1036 (autoload (quote vm-set-thread-indentation-of) "vm-message" nil nil t)
|
|
1037
|
|
1038 (autoload (quote vm-set-thread-list-of) "vm-message" nil nil t)
|
|
1039
|
|
1040 (autoload (quote vm-set-babyl-frob-flag-of) "vm-message" nil nil t)
|
|
1041
|
|
1042 (autoload (quote vm-set-saved-virtual-attributes-of) "vm-message" nil nil t)
|
|
1043
|
|
1044 (autoload (quote vm-set-saved-virtual-mirror-data-of) "vm-message" nil nil t)
|
|
1045
|
|
1046 (autoload (quote vm-set-virtual-summary-of) "vm-message" nil nil t)
|
|
1047
|
98
|
1048 (autoload (quote vm-set-mime-layout-of) "vm-message" nil nil t)
|
|
1049
|
|
1050 (autoload (quote vm-set-mime-encoded-header-flag-of) "vm-message" nil nil t)
|
|
1051
|
70
|
1052 (autoload (quote vm-set-attributes-of) "vm-message" nil nil t)
|
0
|
1053
|
|
1054 (autoload (quote vm-set-edited-flag-of) "vm-message" nil nil nil)
|
|
1055
|
70
|
1056 (autoload (quote vm-set-cache-of) "vm-message" nil nil t)
|
|
1057
|
|
1058 (autoload (quote vm-set-byte-count-of) "vm-message" nil nil t)
|
|
1059
|
|
1060 (autoload (quote vm-set-weekday-of) "vm-message" nil nil t)
|
|
1061
|
|
1062 (autoload (quote vm-set-monthday-of) "vm-message" nil nil t)
|
|
1063
|
|
1064 (autoload (quote vm-set-month-of) "vm-message" nil nil t)
|
|
1065
|
|
1066 (autoload (quote vm-set-year-of) "vm-message" nil nil t)
|
|
1067
|
|
1068 (autoload (quote vm-set-hour-of) "vm-message" nil nil t)
|
|
1069
|
|
1070 (autoload (quote vm-set-zone-of) "vm-message" nil nil t)
|
|
1071
|
|
1072 (autoload (quote vm-set-full-name-of) "vm-message" nil nil t)
|
|
1073
|
|
1074 (autoload (quote vm-set-from-of) "vm-message" nil nil t)
|
|
1075
|
|
1076 (autoload (quote vm-set-message-id-of) "vm-message" nil nil t)
|
|
1077
|
|
1078 (autoload (quote vm-set-line-count-of) "vm-message" nil nil t)
|
|
1079
|
|
1080 (autoload (quote vm-set-subject-of) "vm-message" nil nil t)
|
|
1081
|
|
1082 (autoload (quote vm-set-vheaders-regexp-of) "vm-message" nil nil t)
|
|
1083
|
|
1084 (autoload (quote vm-set-to-of) "vm-message" nil nil t)
|
|
1085
|
|
1086 (autoload (quote vm-set-to-names-of) "vm-message" nil nil t)
|
|
1087
|
|
1088 (autoload (quote vm-set-month-number-of) "vm-message" nil nil t)
|
|
1089
|
|
1090 (autoload (quote vm-set-sortable-datestring-of) "vm-message" nil nil t)
|
|
1091
|
|
1092 (autoload (quote vm-set-sortable-subject-of) "vm-message" nil nil t)
|
|
1093
|
|
1094 (autoload (quote vm-set-summary-of) "vm-message" nil nil t)
|
|
1095
|
|
1096 (autoload (quote vm-set-parent-of) "vm-message" nil nil t)
|
|
1097
|
114
|
1098 (autoload (quote vm-set-references-of) "vm-message" nil nil t)
|
|
1099
|
70
|
1100 (autoload (quote vm-set-mirror-data-of) "vm-message" nil nil t)
|
|
1101
|
|
1102 (autoload (quote vm-set-edit-buffer-of) "vm-message" nil nil t)
|
|
1103
|
|
1104 (autoload (quote vm-set-virtual-messages-of) "vm-message" nil nil t)
|
|
1105
|
|
1106 (autoload (quote vm-set-virtual-messages-sym-of) "vm-message" nil nil t)
|
|
1107
|
|
1108 (autoload (quote vm-set-modflag-of) "vm-message" nil nil t)
|
|
1109
|
|
1110 (autoload (quote vm-set-labels-of) "vm-message" nil nil t)
|
|
1111
|
|
1112 (autoload (quote vm-set-label-string-of) "vm-message" nil nil t)
|
0
|
1113
|
|
1114 (autoload (quote vm-make-message) "vm-message" nil nil nil)
|
|
1115
|
|
1116 (autoload (quote vm-find-and-set-text-of) "vm-message" nil nil nil)
|
|
1117
|
|
1118 (autoload (quote vm-virtual-message-p) "vm-message" nil nil nil)
|
|
1119
|
98
|
1120 (autoload (quote vm-mime-error) "vm-mime" nil nil nil)
|
|
1121
|
|
1122 (autoload (quote vm-mm-layout-type) "vm-mime" nil nil nil)
|
|
1123
|
110
|
1124 (autoload (quote vm-mm-layout-qtype) "vm-mime" nil nil nil)
|
|
1125
|
98
|
1126 (autoload (quote vm-mm-layout-encoding) "vm-mime" nil nil nil)
|
|
1127
|
|
1128 (autoload (quote vm-mm-layout-id) "vm-mime" nil nil nil)
|
|
1129
|
|
1130 (autoload (quote vm-mm-layout-description) "vm-mime" nil nil nil)
|
|
1131
|
|
1132 (autoload (quote vm-mm-layout-disposition) "vm-mime" nil nil nil)
|
|
1133
|
110
|
1134 (autoload (quote vm-mm-layout-qdisposition) "vm-mime" nil nil nil)
|
|
1135
|
98
|
1136 (autoload (quote vm-mm-layout-header-start) "vm-mime" nil nil nil)
|
|
1137
|
|
1138 (autoload (quote vm-mm-layout-body-start) "vm-mime" nil nil nil)
|
|
1139
|
|
1140 (autoload (quote vm-mm-layout-body-end) "vm-mime" nil nil nil)
|
|
1141
|
|
1142 (autoload (quote vm-mm-layout-parts) "vm-mime" nil nil nil)
|
|
1143
|
|
1144 (autoload (quote vm-mm-layout-cache) "vm-mime" nil nil nil)
|
|
1145
|
110
|
1146 (autoload (quote vm-set-mm-layout-type) "vm-mime" nil nil nil)
|
|
1147
|
98
|
1148 (autoload (quote vm-set-mm-layout-cache) "vm-mime" nil nil nil)
|
|
1149
|
|
1150 (autoload (quote vm-mm-layout) "vm-mime" nil nil nil)
|
|
1151
|
|
1152 (autoload (quote vm-mm-encoded-header) "vm-mime" nil nil nil)
|
|
1153
|
|
1154 (autoload (quote vm-mime-Q-decode-region) "vm-mime" nil nil nil)
|
|
1155
|
|
1156 (autoload (quote vm-mime-Q-encode-region) "vm-mime" nil nil nil)
|
|
1157
|
110
|
1158 (autoload (quote vm-mime-B-encode-region) "vm-mime" nil nil nil)
|
98
|
1159
|
|
1160 (autoload (quote vm-mime-crlf-to-lf-region) "vm-mime" nil nil nil)
|
|
1161
|
|
1162 (autoload (quote vm-mime-lf-to-crlf-region) "vm-mime" nil nil nil)
|
|
1163
|
|
1164 (autoload (quote vm-mime-charset-decode-region) "vm-mime" nil nil nil)
|
|
1165
|
|
1166 (autoload (quote vm-mime-transfer-decode-region) "vm-mime" nil nil nil)
|
|
1167
|
|
1168 (autoload (quote vm-mime-base64-decode-region) "vm-mime" nil nil nil)
|
|
1169
|
|
1170 (autoload (quote vm-mime-base64-encode-region) "vm-mime" nil nil nil)
|
|
1171
|
|
1172 (autoload (quote vm-mime-qp-decode-region) "vm-mime" nil nil nil)
|
|
1173
|
|
1174 (autoload (quote vm-mime-qp-encode-region) "vm-mime" nil nil nil)
|
|
1175
|
|
1176 (autoload (quote vm-decode-mime-message-headers) "vm-mime" nil nil nil)
|
|
1177
|
|
1178 (autoload (quote vm-decode-mime-encoded-words) "vm-mime" nil nil nil)
|
|
1179
|
110
|
1180 (autoload (quote vm-decode-mime-encoded-words-in-string) "vm-mime" nil nil nil)
|
|
1181
|
|
1182 (autoload (quote vm-reencode-mime-encoded-words) "vm-mime" nil nil nil)
|
|
1183
|
|
1184 (autoload (quote vm-reencode-mime-encoded-words-in-string) "vm-mime" nil nil nil)
|
98
|
1185
|
|
1186 (autoload (quote vm-mime-get-header-contents) "vm-mime" nil nil nil)
|
|
1187
|
|
1188 (autoload (quote vm-mime-parse-entity) "vm-mime" nil nil nil)
|
|
1189
|
|
1190 (autoload (quote vm-mime-parse-entity-safe) "vm-mime" nil nil nil)
|
|
1191
|
|
1192 (autoload (quote vm-mime-get-xxx-parameter) "vm-mime" nil nil nil)
|
|
1193
|
|
1194 (autoload (quote vm-mime-get-parameter) "vm-mime" nil nil nil)
|
|
1195
|
|
1196 (autoload (quote vm-mime-get-disposition-parameter) "vm-mime" nil nil nil)
|
|
1197
|
|
1198 (autoload (quote vm-mime-insert-mime-body) "vm-mime" nil nil nil)
|
|
1199
|
|
1200 (autoload (quote vm-mime-insert-mime-headers) "vm-mime" nil nil nil)
|
|
1201
|
|
1202 (autoload (quote vm-make-presentation-copy) "vm-mime" nil nil nil)
|
|
1203
|
|
1204 (autoload (quote vm-determine-proper-charset) "vm-mime" nil nil nil)
|
|
1205
|
|
1206 (autoload (quote vm-determine-proper-content-transfer-encoding) "vm-mime" nil nil nil)
|
|
1207
|
|
1208 (autoload (quote vm-mime-types-match) "vm-mime" nil nil nil)
|
|
1209
|
|
1210 (autoload (quote vm-mime-can-display-internal) "vm-mime" nil nil nil)
|
|
1211
|
|
1212 (autoload (quote vm-mime-can-convert) "vm-mime" nil nil nil)
|
|
1213
|
|
1214 (autoload (quote vm-mime-convert-undisplayable-layout) "vm-mime" nil nil nil)
|
|
1215
|
|
1216 (autoload (quote vm-mime-should-display-button) "vm-mime" nil nil nil)
|
|
1217
|
|
1218 (autoload (quote vm-mime-should-display-internal) "vm-mime" nil nil nil)
|
|
1219
|
|
1220 (autoload (quote vm-mime-find-external-viewer) "vm-mime" nil nil nil)
|
|
1221
|
|
1222 (autoload (quote vm-mime-delete-button-maybe) "vm-mime" nil nil nil)
|
|
1223
|
|
1224 (autoload (quote vm-decode-mime-message) "vm-mime" "Decode the MIME objects in the current message.
|
|
1225
|
|
1226 The first time this command is run on a message, decoding is done.
|
|
1227 The second time, buttons for all the objects are displayed instead.
|
|
1228 The third time, the raw, undecoded data is displayed.
|
|
1229
|
|
1230 If decoding, the decoded objects might be displayed immediately, or
|
|
1231 buttons might be displayed that you need to activate to view the
|
|
1232 object. See the documentation for the variables
|
|
1233
|
|
1234 vm-auto-displayed-mime-content-types
|
|
1235 vm-mime-internal-content-types
|
|
1236 vm-mime-external-content-types-alist
|
|
1237
|
|
1238 to see how to control whether you see buttons or objects.
|
|
1239
|
|
1240 If the variable vm-mime-display-function is set, then its value
|
|
1241 is called as a function with no arguments, and none of the
|
|
1242 actions mentioned in the preceding paragraphs are done. At the
|
|
1243 time of the call, the current buffer will be the presentation
|
|
1244 buffer for the folder and a copy of the current message will be
|
|
1245 in the buffer. The function is expected to make the message
|
|
1246 `MIME presentable' to the user in whatever manner it sees fit." t nil)
|
|
1247
|
|
1248 (autoload (quote vm-decode-mime-layout) "vm-mime" nil nil nil)
|
|
1249
|
|
1250 (autoload (quote vm-mime-display-button-text) "vm-mime" nil nil nil)
|
|
1251
|
120
|
1252 (autoload (quote vm-mime-display-internal-text/html) "vm-mime" nil nil nil)
|
|
1253
|
98
|
1254 (autoload (quote vm-mime-display-internal-text/plain) "vm-mime" nil nil nil)
|
|
1255
|
|
1256 (autoload (quote vm-mime-display-internal-text/enriched) "vm-mime" nil nil nil)
|
|
1257
|
|
1258 (autoload (quote vm-mime-display-external-generic) "vm-mime" nil nil nil)
|
|
1259
|
|
1260 (autoload (quote vm-mime-display-internal-application/octet-stream) "vm-mime" nil nil nil)
|
|
1261
|
126
|
1262 (autoload (quote vm-mime-display-button-application) "vm-mime" nil nil nil)
|
|
1263
|
98
|
1264 (autoload (quote vm-mime-display-button-image) "vm-mime" nil nil nil)
|
|
1265
|
|
1266 (autoload (quote vm-mime-display-button-audio) "vm-mime" nil nil nil)
|
|
1267
|
|
1268 (autoload (quote vm-mime-display-button-video) "vm-mime" nil nil nil)
|
|
1269
|
|
1270 (autoload (quote vm-mime-display-button-message) "vm-mime" nil nil nil)
|
|
1271
|
|
1272 (autoload (quote vm-mime-display-button-multipart) "vm-mime" nil nil nil)
|
|
1273
|
|
1274 (autoload (quote vm-mime-display-internal-multipart/mixed) "vm-mime" nil nil nil)
|
|
1275
|
|
1276 (autoload (quote vm-mime-display-internal-multipart/alternative) "vm-mime" nil nil nil)
|
|
1277
|
|
1278 (autoload (quote vm-mime-display-button-multipart/parallel) "vm-mime" nil nil nil)
|
|
1279
|
|
1280 (autoload (quote vm-mime-display-internal-multipart/digest) "vm-mime" nil nil nil)
|
|
1281
|
118
|
1282 (autoload (quote vm-mime-display-button-message/rfc822) "vm-mime" nil nil nil)
|
|
1283
|
98
|
1284 (autoload (quote vm-mime-display-internal-message/rfc822) "vm-mime" nil nil nil)
|
|
1285
|
|
1286 (autoload (quote vm-mime-display-internal-message/partial) "vm-mime" nil nil nil)
|
|
1287
|
|
1288 (autoload (quote vm-mime-display-internal-image-xxxx) "vm-mime" nil nil nil)
|
|
1289
|
|
1290 (autoload (quote vm-mime-display-internal-image/gif) "vm-mime" nil nil nil)
|
|
1291
|
|
1292 (autoload (quote vm-mime-display-internal-image/jpeg) "vm-mime" nil nil nil)
|
|
1293
|
|
1294 (autoload (quote vm-mime-display-internal-image/png) "vm-mime" nil nil nil)
|
|
1295
|
|
1296 (autoload (quote vm-mime-display-internal-image/tiff) "vm-mime" nil nil nil)
|
|
1297
|
|
1298 (autoload (quote vm-mime-display-internal-audio/basic) "vm-mime" nil nil nil)
|
|
1299
|
|
1300 (autoload (quote vm-mime-display-button-xxxx) "vm-mime" nil nil nil)
|
|
1301
|
|
1302 (autoload (quote vm-mime-run-display-function-at-point) "vm-mime" nil t nil)
|
|
1303
|
120
|
1304 (autoload (quote vm-mime-set-extent-glyph-for-type) "vm-mime" nil nil nil)
|
110
|
1305
|
98
|
1306 (autoload (quote vm-mime-insert-button) "vm-mime" nil nil nil)
|
|
1307
|
110
|
1308 (autoload (quote vm-mime-rewrite-failed-button) "vm-mime" nil nil nil)
|
|
1309
|
98
|
1310 (autoload (quote vm-mime-send-body-to-file) "vm-mime" nil nil nil)
|
|
1311
|
|
1312 (autoload (quote vm-mime-pipe-body-to-command) "vm-mime" nil nil nil)
|
|
1313
|
110
|
1314 (autoload (quote vm-mime-pipe-body-to-queried-command) "vm-mime" nil nil nil)
|
|
1315
|
|
1316 (autoload (quote vm-mime-pipe-body-to-queried-command-discard-output) "vm-mime" nil nil nil)
|
|
1317
|
|
1318 (autoload (quote vm-mime-send-body-to-printer) "vm-mime" nil nil nil)
|
|
1319
|
|
1320 (autoload (quote vm-mime-display-body-as-text) "vm-mime" nil nil nil)
|
|
1321
|
|
1322 (autoload (quote vm-mime-display-body-using-external-viewer) "vm-mime" nil nil nil)
|
98
|
1323
|
|
1324 (autoload (quote vm-mime-scrub-description) "vm-mime" nil nil nil)
|
|
1325
|
|
1326 (autoload (quote vm-mime-layout-description) "vm-mime" nil nil nil)
|
|
1327
|
|
1328 (autoload (quote vm-mime-layout-contains-type) "vm-mime" nil nil nil)
|
|
1329
|
|
1330 (autoload (quote vm-mime-plain-message-p) "vm-mime" nil nil nil)
|
|
1331
|
|
1332 (autoload (quote vm-mime-text-type-p) "vm-mime" nil nil nil)
|
|
1333
|
|
1334 (autoload (quote vm-mime-charset-internally-displayable-p) "vm-mime" nil nil nil)
|
|
1335
|
|
1336 (autoload (quote vm-mime-find-message/partials) "vm-mime" nil nil nil)
|
|
1337
|
|
1338 (autoload (quote vm-message-at-point) "vm-mime" nil nil nil)
|
|
1339
|
|
1340 (autoload (quote vm-mime-make-multipart-boundary) "vm-mime" nil nil nil)
|
|
1341
|
|
1342 (autoload (quote vm-mime-attach-file) "vm-mime" "Attach a file to a VM composition buffer to be sent along with the message.
|
|
1343 The file is not inserted into the buffer and MIME encoded until
|
|
1344 you execute vm-mail-send or vm-mail-send-and-exit. A visible tag
|
|
1345 indicating the existence of the attachment is placed in the
|
|
1346 composition buffer. You can move the attachment around or remove
|
|
1347 it entirely with normal text editing commands. If you remove the
|
|
1348 attachment tag, the attachment will not be sent.
|
|
1349
|
|
1350 First argument, FILE, is the name of the file to attach. Second
|
|
1351 argument, TYPE, is the MIME Content-Type of the file. Optional
|
|
1352 third argument CHARSET is the character set of the attached
|
110
|
1353 document. This argument is only used for text types, and it is
|
|
1354 ignored for other types. Optional fourth argument DESCRIPTION
|
|
1355 should be a one line description of the file.
|
98
|
1356
|
|
1357 When called interactively all arguments are read from the
|
|
1358 minibuffer.
|
|
1359
|
|
1360 This command is for attaching files that do not have a MIME
|
|
1361 header section at the top. For files with MIME headers, you
|
|
1362 should use vm-mime-attach-mime-file to attach such a file. VM
|
|
1363 will extract the content type information from the headers in
|
|
1364 this case and not prompt you for it in the minibuffer." t nil)
|
|
1365
|
|
1366 (autoload (quote vm-mime-attach-mime-file) "vm-mime" "Attach a MIME encoded file to a VM composition buffer to be sent
|
|
1367 along with the message.
|
|
1368
|
|
1369 The file is not inserted into the buffer until you execute
|
|
1370 vm-mail-send or vm-mail-send-and-exit. A visible tag indicating
|
|
1371 the existence of the attachment is placed in the composition
|
|
1372 buffer. You can move the attachment around or remove it entirely
|
|
1373 with normal text editing commands. If you remove the attachment
|
|
1374 tag, the attachment will not be sent.
|
|
1375
|
|
1376 The sole argument, FILE, is the name of the file to attach.
|
|
1377 When called interactively the FILE argument is read from the
|
|
1378 minibuffer.
|
|
1379
|
|
1380 This command is for attaching files that have a MIME
|
|
1381 header section at the top. For files without MIME headers, you
|
|
1382 should use vm-mime-attach-file to attach such a file. VM
|
|
1383 will interactively query you for the file type information." t nil)
|
|
1384
|
|
1385 (autoload (quote vm-mime-attach-object) "vm-mime" nil nil nil)
|
|
1386
|
110
|
1387 (autoload (quote vm-mime-attachment-disposition-at-point) "vm-mime" nil nil nil)
|
|
1388
|
|
1389 (autoload (quote vm-mime-set-attachment-disposition-at-point) "vm-mime" nil nil nil)
|
|
1390
|
|
1391 (autoload (quote vm-disallow-overlay-endpoint-insertion) "vm-mime" nil nil nil)
|
|
1392
|
|
1393 (autoload (quote vm-mime-fake-attachment-overlays) "vm-mime" nil nil nil)
|
|
1394
|
98
|
1395 (autoload (quote vm-mime-default-type-from-filename) "vm-mime" nil nil nil)
|
|
1396
|
|
1397 (autoload (quote vm-remove-mail-mode-header-separator) "vm-mime" nil nil nil)
|
|
1398
|
|
1399 (autoload (quote vm-add-mail-mode-header-separator) "vm-mime" nil nil nil)
|
|
1400
|
|
1401 (autoload (quote vm-mime-transfer-encode-region) "vm-mime" nil nil nil)
|
|
1402
|
|
1403 (autoload (quote vm-mime-transfer-encode-layout) "vm-mime" nil nil nil)
|
|
1404
|
118
|
1405 (autoload (quote vm-mime-encode-composition) "vm-mime" "MIME encode the current mail composition buffer.
|
98
|
1406 Attachment tags added to the buffer with vm-mime-attach-file are expanded
|
|
1407 and the approriate content-type and boundary markup information is added." t nil)
|
|
1408
|
118
|
1409 (autoload (quote vm-mime-xemacs-encode-composition) "vm-mime" nil nil nil)
|
|
1410
|
|
1411 (autoload (quote vm-mime-fsfemacs-encode-composition) "vm-mime" nil nil nil)
|
|
1412
|
98
|
1413 (autoload (quote vm-mime-fragment-composition) "vm-mime" nil nil nil)
|
|
1414
|
|
1415 (autoload (quote vm-mime-preview-composition) "vm-mime" "Show how the current composition buffer might be displayed
|
|
1416 in a MIME-aware mail reader. VM copies and encodes the current
|
|
1417 mail composition buffer and displays it as a mail folder.
|
|
1418 Type `q' to quit this temp folder and return to composing your
|
|
1419 message." t nil)
|
|
1420
|
|
1421 (autoload (quote vm-mime-composite-type-p) "vm-mime" nil nil nil)
|
|
1422
|
|
1423 (autoload (quote vm-mime-map-atomic-layouts) "vm-mime" nil nil nil)
|
|
1424
|
0
|
1425 (autoload (quote vm-minibuffer-complete-word) "vm-minibuf" nil t nil)
|
|
1426
|
|
1427 (autoload (quote vm-minibuffer-complete-word-and-exit) "vm-minibuf" nil t nil)
|
|
1428
|
|
1429 (autoload (quote vm-minibuffer-completion-message) "vm-minibuf" "Briefly display STRING to the right of the current minibuffer input.
|
|
1430 Optional second arg SECONDS specifies how long to keep the message visible;
|
|
1431 the default is 2 seconds.
|
|
1432
|
|
1433 A keypress causes the immediate erasure of the STRING, and return of control
|
|
1434 to the calling program." nil nil)
|
|
1435
|
|
1436 (autoload (quote vm-minibuffer-replace-word) "vm-minibuf" nil nil nil)
|
|
1437
|
|
1438 (autoload (quote vm-minibuffer-show-completions) "vm-minibuf" "Display LIST in a multi-column listing in the \" *Completions*\" buffer.
|
|
1439 LIST should be a list of strings." nil nil)
|
|
1440
|
|
1441 (autoload (quote vm-show-list) "vm-minibuf" "Display LIST in a multi-column listing in the current buffer at point.
|
|
1442 The current buffer must be displayed in some window at the time
|
|
1443 this function is called.
|
|
1444
|
|
1445 LIST should be a list of strings.
|
|
1446
|
|
1447 Optional second argument FUNCTION will be called if the mouse is
|
|
1448 clicked on one of the strings in the current buffer. The string
|
|
1449 clicked upon will be passed to FUNCTION as its sole argument.
|
|
1450
|
|
1451 Optional third argument KEYMAPS specifies a lists of keymaps
|
|
1452 where the FUNCTION should be bound to the mouse clicks. By
|
|
1453 default the local keymap of the current buffer is used." nil nil)
|
|
1454
|
|
1455 (autoload (quote vm-minibuffer-completion-help) "vm-minibuf" nil t nil)
|
|
1456
|
|
1457 (autoload (quote vm-keyboard-read-string) "vm-minibuf" nil nil nil)
|
|
1458
|
|
1459 (autoload (quote vm-read-string) "vm-minibuf" nil nil nil)
|
|
1460
|
|
1461 (autoload (quote vm-read-number) "vm-minibuf" nil nil nil)
|
|
1462
|
|
1463 (autoload (quote vm-read-password) "vm-minibuf" "Read and return a password from the minibuffer, prompting with PROMPT.
|
|
1464 Optional second argument CONFIRM non-nil means that the user will be asked
|
|
1465 to type the password a second time for confirmation and if there is a
|
|
1466 mismatch, the process is repeated.
|
|
1467
|
|
1468 Line editing keys are:
|
|
1469 C-h, DEL rubout
|
|
1470 C-u, C-x line kill
|
|
1471 C-q, C-v literal next" nil nil)
|
|
1472
|
|
1473 (autoload (quote vm-keyboard-read-file-name) "vm-minibuf" "Like read-file-name, except HISTORY's value is unaltered." nil nil)
|
|
1474
|
|
1475 (autoload (quote vm-read-file-name) "vm-minibuf" "Like read-file-name, except a mouse interface is used if a mouse
|
|
1476 click mouse triggered the current command." nil nil)
|
|
1477
|
|
1478 (autoload (quote vm-delete-non-matching-strings) "vm-misc" "Delete strings matching REGEXP from LIST.
|
|
1479 Optional third arg non-nil means to destructively alter LIST, instead of
|
|
1480 working on a copy.
|
|
1481
|
|
1482 The new version of the list, minus the deleted strings, is returned." nil nil)
|
|
1483
|
|
1484 (autoload (quote vm-parse) "vm-misc" nil nil nil)
|
|
1485
|
|
1486 (autoload (quote vm-parse-addresses) "vm-misc" nil nil nil)
|
|
1487
|
118
|
1488 (autoload (quote vm-parse-structured-header) "vm-misc" nil nil nil)
|
|
1489
|
0
|
1490 (autoload (quote vm-write-string) "vm-misc" nil nil nil)
|
|
1491
|
70
|
1492 (autoload (quote vm-marker) "vm-misc" nil nil t)
|
|
1493
|
|
1494 (autoload (quote vm-increment) "vm-misc" nil nil t)
|
|
1495
|
|
1496 (autoload (quote vm-decrement) "vm-misc" nil nil t)
|
|
1497
|
|
1498 (autoload (quote vm-select-folder-buffer) "vm-misc" nil nil t)
|
0
|
1499
|
|
1500 (autoload (quote vm-check-for-killed-summary) "vm-misc" nil nil nil)
|
|
1501
|
98
|
1502 (autoload (quote vm-check-for-killed-presentation) "vm-misc" nil nil nil)
|
|
1503
|
0
|
1504 (autoload (quote vm-check-for-killed-folder) "vm-misc" nil nil nil)
|
|
1505
|
70
|
1506 (autoload (quote vm-error-if-folder-read-only) "vm-misc" nil nil t)
|
|
1507
|
|
1508 (autoload (quote vm-error-if-virtual-folder) "vm-misc" nil nil t)
|
|
1509
|
|
1510 (autoload (quote vm-build-threads-if-unbuilt) "vm-misc" nil nil t)
|
0
|
1511
|
|
1512 (autoload (quote vm-abs) "vm-misc" nil nil nil)
|
|
1513
|
70
|
1514 (autoload (quote vm-save-restriction) "vm-misc" nil nil t)
|
|
1515
|
|
1516 (autoload (quote vm-save-buffer-excursion) "vm-misc" nil nil t)
|
0
|
1517
|
|
1518 (autoload (quote vm-last) "vm-misc" nil nil nil)
|
|
1519
|
|
1520 (autoload (quote vm-vector-to-list) "vm-misc" nil nil nil)
|
|
1521
|
|
1522 (autoload (quote vm-extend-vector) "vm-misc" nil nil nil)
|
|
1523
|
|
1524 (autoload (quote vm-obarray-to-string-list) "vm-misc" nil nil nil)
|
|
1525
|
|
1526 (autoload (quote vm-mapcar) "vm-misc" nil nil nil)
|
|
1527
|
|
1528 (autoload (quote vm-mapc) "vm-misc" nil nil nil)
|
|
1529
|
|
1530 (autoload (quote vm-delete) "vm-misc" nil nil nil)
|
|
1531
|
98
|
1532 (autoload (quote vm-delete-directory-file-names) "vm-misc" nil nil nil)
|
|
1533
|
|
1534 (autoload (quote vm-delete-backup-file-names) "vm-misc" nil nil nil)
|
|
1535
|
|
1536 (autoload (quote vm-delete-auto-save-file-names) "vm-misc" nil nil nil)
|
|
1537
|
0
|
1538 (autoload (quote vm-delete-duplicates) "vm-misc" "Delete duplicate equivalent strings from the list.
|
|
1539 If ALL is t, then if there is more than one occurrence of a string in the list,
|
|
1540 then all occurrences of it are removed instead of just the subsequent ones.
|
|
1541 If HACK-ADDRESSES is t, then the strings are considered to be mail addresses,
|
|
1542 and only the address part is compared (so that \"Name <foo>\" and \"foo\"
|
|
1543 would be considered to be equivalent.)" nil nil)
|
|
1544
|
|
1545 (autoload (quote vm-member-0) "vm-misc" nil nil nil)
|
|
1546
|
|
1547 (autoload (quote vm-delqual) "vm-misc" nil nil nil)
|
|
1548
|
|
1549 (autoload (quote vm-copy-local-variables) "vm-misc" nil nil nil)
|
|
1550
|
|
1551 (autoload (quote vm-error-if-folder-empty) "vm-misc" nil nil nil)
|
|
1552
|
|
1553 (autoload (quote vm-copy) "vm-misc" nil nil nil)
|
|
1554
|
|
1555 (autoload (quote vm-multiple-frames-possible-p) "vm-misc" nil nil nil)
|
|
1556
|
|
1557 (autoload (quote vm-mouse-support-possible-p) "vm-misc" nil nil nil)
|
|
1558
|
|
1559 (autoload (quote vm-menu-support-possible-p) "vm-misc" nil nil nil)
|
|
1560
|
|
1561 (autoload (quote vm-toolbar-support-possible-p) "vm-misc" nil nil nil)
|
|
1562
|
110
|
1563 (autoload (quote vm-multiple-fonts-possible-p) "vm-misc" nil nil nil)
|
|
1564
|
0
|
1565 (autoload (quote vm-run-message-hook) "vm-misc" nil nil nil)
|
|
1566
|
|
1567 (autoload (quote vm-error-free-call) "vm-misc" nil nil nil)
|
|
1568
|
|
1569 (autoload (quote vm-trace) "vm-misc" nil nil nil)
|
|
1570
|
|
1571 (autoload (quote vm-timezone-make-date-sortable) "vm-misc" nil nil nil)
|
|
1572
|
|
1573 (autoload (quote vm-current-time-zone) "vm-misc" nil nil nil)
|
|
1574
|
|
1575 (autoload (quote vm-should-generate-summary) "vm-misc" nil nil nil)
|
|
1576
|
|
1577 (autoload (quote vm-find-composition-buffer) "vm-misc" nil nil nil)
|
|
1578
|
|
1579 (autoload (quote vm-get-file-buffer) "vm-misc" "Like get-file-buffer, but also checks buffers against FILE's truename" nil nil)
|
|
1580
|
|
1581 (autoload (quote vm-set-region-face) "vm-misc" nil nil nil)
|
|
1582
|
|
1583 (autoload (quote vm-default-buffer-substring-no-properties) "vm-misc" nil nil nil)
|
|
1584
|
|
1585 (autoload (quote vm-buffer-string-no-properties) "vm-misc" nil nil nil)
|
|
1586
|
98
|
1587 (autoload (quote vm-insert-region-from-buffer) "vm-misc" nil nil nil)
|
|
1588
|
|
1589 (autoload (quote vm-copy-extent) "vm-misc" nil nil nil)
|
|
1590
|
|
1591 (autoload (quote vm-make-tempfile-name) "vm-misc" nil nil nil)
|
|
1592
|
|
1593 (autoload (quote vm-insert-char) "vm-misc" nil nil nil)
|
|
1594
|
|
1595 (autoload (quote vm-xemacs-compatible-insert-char) "vm-misc" nil nil nil)
|
|
1596
|
|
1597 (autoload (quote vm-symbol-lists-intersect-p) "vm-misc" nil nil nil)
|
|
1598
|
|
1599 (autoload (quote vm-set-buffer-variable) "vm-misc" nil nil nil)
|
|
1600
|
110
|
1601 (autoload (quote vm-buffer-variable-value) "vm-misc" nil nil nil)
|
|
1602
|
|
1603 (autoload (quote vm-with-virtual-selector-variables) "vm-misc" nil nil t)
|
|
1604
|
|
1605 (autoload (quote vm-string-assoc) "vm-misc" nil nil nil)
|
|
1606
|
|
1607 (autoload (quote vm-string-member) "vm-misc" nil nil nil)
|
|
1608
|
|
1609 (autoload (quote vm-assert) "vm-misc" nil nil t)
|
|
1610
|
0
|
1611 (autoload (quote vm-mouse-fsfemacs-mouse-p) "vm-mouse" nil nil nil)
|
|
1612
|
|
1613 (autoload (quote vm-mouse-xemacs-mouse-p) "vm-mouse" nil nil nil)
|
|
1614
|
|
1615 (autoload (quote vm-mouse-set-mouse-track-highlight) "vm-mouse" nil nil nil)
|
|
1616
|
|
1617 (autoload (quote vm-mouse-button-2) "vm-mouse" nil t nil)
|
|
1618
|
|
1619 (autoload (quote vm-mouse-button-3) "vm-mouse" nil t nil)
|
|
1620
|
98
|
1621 (autoload (quote vm-mouse-3-help) "vm-mouse" nil nil nil)
|
0
|
1622
|
|
1623 (autoload (quote vm-mouse-get-mouse-track-string) "vm-mouse" nil nil nil)
|
|
1624
|
|
1625 (autoload (quote vm-mouse-popup-or-select) "vm-mouse" nil t nil)
|
|
1626
|
|
1627 (autoload (quote vm-mouse-send-url-at-event) "vm-mouse" nil t nil)
|
|
1628
|
|
1629 (autoload (quote vm-mouse-send-url-at-position) "vm-mouse" nil nil nil)
|
|
1630
|
|
1631 (autoload (quote vm-mouse-send-url) "vm-mouse" nil nil nil)
|
|
1632
|
|
1633 (autoload (quote vm-mouse-send-url-to-netscape) "vm-mouse" nil nil nil)
|
|
1634
|
126
|
1635 (autoload (quote vm-mouse-send-url-to-netscape-new-window) "vm-mouse" nil nil nil)
|
|
1636
|
0
|
1637 (autoload (quote vm-mouse-send-url-to-mosaic) "vm-mouse" nil nil nil)
|
|
1638
|
126
|
1639 (autoload (quote vm-mouse-send-url-to-mosaic-new-window) "vm-mouse" nil nil nil)
|
|
1640
|
0
|
1641 (autoload (quote vm-mouse-install-mouse) "vm-mouse" nil nil nil)
|
|
1642
|
|
1643 (autoload (quote vm-run-background-command) "vm-mouse" nil nil nil)
|
|
1644
|
|
1645 (autoload (quote vm-run-command) "vm-mouse" nil nil nil)
|
|
1646
|
98
|
1647 (autoload (quote vm-run-command-on-region) "vm-mouse" nil nil nil)
|
|
1648
|
0
|
1649 (autoload (quote vm-mouse-read-file-name) "vm-mouse" "Like read-file-name, except uses a mouse driven interface.
|
|
1650 HISTORY argument is ignored." nil nil)
|
|
1651
|
|
1652 (autoload (quote vm-mouse-read-file-name-event-handler) "vm-mouse" nil nil nil)
|
|
1653
|
|
1654 (autoload (quote vm-mouse-read-file-name-quit-handler) "vm-mouse" nil t nil)
|
|
1655
|
|
1656 (autoload (quote vm-mouse-read-string) "vm-mouse" nil nil nil)
|
|
1657
|
|
1658 (autoload (quote vm-mouse-read-string-event-handler) "vm-mouse" nil nil nil)
|
|
1659
|
|
1660 (autoload (quote vm-mouse-read-string-quit-handler) "vm-mouse" nil t nil)
|
|
1661
|
|
1662 (autoload (quote vm-record-and-change-message-pointer) "vm-motion" nil nil nil)
|
|
1663
|
|
1664 (autoload (quote vm-goto-message) "vm-motion" "Go to the message numbered N.
|
|
1665 Interactively N is the prefix argument. If no prefix arg is provided
|
|
1666 N is prompted for in the minibuffer.
|
|
1667
|
|
1668 If vm-follow-summary-cursor is non-nil this command will go to
|
|
1669 the message under the cursor in the summary buffer if the summary
|
|
1670 window is selected. This only happens if no prefix argument is
|
|
1671 given." t nil)
|
|
1672
|
|
1673 (autoload (quote vm-goto-message-last-seen) "vm-motion" "Go to the message last previewed." t nil)
|
|
1674
|
|
1675 (autoload (quote vm-goto-parent-message) "vm-motion" "Go to the parent of the current message." t nil)
|
|
1676
|
|
1677 (autoload (quote vm-check-count) "vm-motion" nil nil nil)
|
|
1678
|
|
1679 (autoload (quote vm-move-message-pointer) "vm-motion" nil nil nil)
|
|
1680
|
|
1681 (autoload (quote vm-should-skip-message) "vm-motion" nil nil nil)
|
|
1682
|
|
1683 (autoload (quote vm-next-message) "vm-motion" "Go forward one message and preview it.
|
|
1684 With prefix arg (optional first argument) COUNT, go forward COUNT
|
|
1685 messages. A negative COUNT means go backward. If the absolute
|
|
1686 value of COUNT is greater than 1, then the values of the variables
|
|
1687 vm-skip-deleted-messages and vm-skip-read-messages are ignored.
|
|
1688
|
|
1689 When invoked on marked messages (via vm-next-command-uses-marks)
|
|
1690 this command 'sees' marked messages as it moves." t nil)
|
|
1691
|
|
1692 (autoload (quote vm-previous-message) "vm-motion" "Go back one message and preview it.
|
|
1693 With prefix arg COUNT, go backward COUNT messages. A negative COUNT
|
|
1694 means go forward. If the absolute value of COUNT > 1 the values of the
|
|
1695 variables vm-skip-deleted-messages and vm-skip-read-messages are
|
|
1696 ignored." t nil)
|
|
1697
|
|
1698 (autoload (quote vm-next-message-no-skip) "vm-motion" "Like vm-next-message but will not skip deleted or read messages." t nil)
|
|
1699
|
|
1700 (autoload (quote vm-previous-message-no-skip) "vm-motion" "Like vm-previous-message but will not skip deleted or read messages." t nil)
|
|
1701
|
|
1702 (autoload (quote vm-next-unread-message) "vm-motion" "Move forward to the nearest new or unread message, if there is one." t nil)
|
|
1703
|
|
1704 (autoload (quote vm-previous-unread-message) "vm-motion" "Move backward to the nearest new or unread message, if there is one." t nil)
|
|
1705
|
|
1706 (autoload (quote vm-next-message-same-subject) "vm-motion" "Move forward to the nearest message with the same subject.
|
|
1707 vm-subject-ignored-prefix and vm-subject-ignored-suffix will apply
|
|
1708 to the subject comparisons." t nil)
|
|
1709
|
|
1710 (autoload (quote vm-previous-message-same-subject) "vm-motion" "Move backward to the nearest message with the same subject.
|
|
1711 vm-subject-ignored-prefix and vm-subject-ignored-suffix will apply
|
|
1712 to the subject comparisons." t nil)
|
|
1713
|
|
1714 (autoload (quote vm-find-first-unread-message) "vm-motion" nil nil nil)
|
|
1715
|
|
1716 (autoload (quote vm-thoughtfully-select-message) "vm-motion" nil nil nil)
|
|
1717
|
|
1718 (autoload (quote vm-follow-summary-cursor) "vm-motion" nil nil nil)
|
|
1719
|
|
1720 (autoload (quote vm-scroll-forward) "vm-page" "Scroll forward a screenful of text.
|
|
1721 If the current message is being previewed, the message body is revealed.
|
|
1722 If at the end of the current message, moves to the next message iff the
|
|
1723 value of vm-auto-next-message is non-nil.
|
|
1724 Prefix argument N means scroll forward N lines." t nil)
|
|
1725
|
|
1726 (autoload (quote vm-scroll-forward-internal) "vm-page" nil nil nil)
|
|
1727
|
|
1728 (autoload (quote vm-howl-if-eom) "vm-page" nil nil nil)
|
|
1729
|
|
1730 (autoload (quote vm-emit-eom-blurb) "vm-page" nil nil nil)
|
|
1731
|
|
1732 (autoload (quote vm-scroll-backward) "vm-page" "Scroll backward a screenful of text.
|
|
1733 Prefix N scrolls backward N lines." t nil)
|
|
1734
|
|
1735 (autoload (quote vm-highlight-headers) "vm-page" nil nil nil)
|
|
1736
|
|
1737 (autoload (quote vm-energize-urls) "vm-page" nil nil nil)
|
|
1738
|
|
1739 (autoload (quote vm-energize-headers) "vm-page" nil nil nil)
|
|
1740
|
|
1741 (autoload (quote vm-display-xface) "vm-page" nil nil nil)
|
|
1742
|
|
1743 (autoload (quote vm-url-help) "vm-page" nil nil nil)
|
|
1744
|
98
|
1745 (autoload (quote vm-energize-urls-in-message-region) "vm-page" nil nil nil)
|
|
1746
|
|
1747 (autoload (quote vm-highlight-headers-maybe) "vm-page" nil nil nil)
|
|
1748
|
|
1749 (autoload (quote vm-energize-headers-and-xfaces) "vm-page" nil nil nil)
|
|
1750
|
|
1751 (autoload (quote vm-narrow-for-preview) "vm-page" nil nil nil)
|
|
1752
|
0
|
1753 (autoload (quote vm-preview-current-message) "vm-page" nil nil nil)
|
|
1754
|
|
1755 (autoload (quote vm-show-current-message) "vm-page" nil nil nil)
|
|
1756
|
|
1757 (autoload (quote vm-expose-hidden-headers) "vm-page" "Toggle exposing and hiding message headers that are normally not visible." t nil)
|
|
1758
|
|
1759 (autoload (quote vm-widen-page) "vm-page" nil nil nil)
|
|
1760
|
|
1761 (autoload (quote vm-narrow-to-page) "vm-page" nil nil nil)
|
|
1762
|
|
1763 (autoload (quote vm-beginning-of-message) "vm-page" "Moves to the beginning of the current message." t nil)
|
|
1764
|
|
1765 (autoload (quote vm-end-of-message) "vm-page" "Moves to the end of the current message, exposing and flagging it read
|
|
1766 as necessary." t nil)
|
|
1767
|
|
1768 (autoload (quote vm-pop-move-mail) "vm-pop" nil nil nil)
|
|
1769
|
110
|
1770 (autoload (quote vm-pop-check-mail) "vm-pop" nil nil nil)
|
|
1771
|
|
1772 (autoload (quote vm-pop-make-session) "vm-pop" nil nil nil)
|
|
1773
|
|
1774 (autoload (quote vm-pop-end-session) "vm-pop" nil nil nil)
|
|
1775
|
|
1776 (autoload (quote vm-pop-stat-timer) "vm-pop" nil nil nil)
|
|
1777
|
|
1778 (autoload (quote vm-pop-stat-x-box) "vm-pop" nil nil nil)
|
|
1779
|
|
1780 (autoload (quote vm-pop-stat-x-currmsg) "vm-pop" nil nil nil)
|
|
1781
|
|
1782 (autoload (quote vm-pop-stat-x-maxmsg) "vm-pop" nil nil nil)
|
|
1783
|
|
1784 (autoload (quote vm-pop-stat-x-got) "vm-pop" nil nil nil)
|
|
1785
|
|
1786 (autoload (quote vm-pop-stat-x-need) "vm-pop" nil nil nil)
|
|
1787
|
|
1788 (autoload (quote vm-pop-stat-y-box) "vm-pop" nil nil nil)
|
|
1789
|
|
1790 (autoload (quote vm-pop-stat-y-currmsg) "vm-pop" nil nil nil)
|
|
1791
|
|
1792 (autoload (quote vm-pop-stat-y-maxmsg) "vm-pop" nil nil nil)
|
|
1793
|
|
1794 (autoload (quote vm-pop-stat-y-got) "vm-pop" nil nil nil)
|
|
1795
|
|
1796 (autoload (quote vm-pop-stat-y-need) "vm-pop" nil nil nil)
|
|
1797
|
|
1798 (autoload (quote vm-set-pop-stat-timer) "vm-pop" nil nil nil)
|
|
1799
|
|
1800 (autoload (quote vm-set-pop-stat-x-box) "vm-pop" nil nil nil)
|
|
1801
|
|
1802 (autoload (quote vm-set-pop-stat-x-currmsg) "vm-pop" nil nil nil)
|
|
1803
|
|
1804 (autoload (quote vm-set-pop-stat-x-maxmsg) "vm-pop" nil nil nil)
|
|
1805
|
|
1806 (autoload (quote vm-set-pop-stat-x-got) "vm-pop" nil nil nil)
|
|
1807
|
|
1808 (autoload (quote vm-set-pop-stat-x-need) "vm-pop" nil nil nil)
|
|
1809
|
|
1810 (autoload (quote vm-set-pop-stat-y-box) "vm-pop" nil nil nil)
|
|
1811
|
|
1812 (autoload (quote vm-set-pop-stat-y-currmsg) "vm-pop" nil nil nil)
|
|
1813
|
|
1814 (autoload (quote vm-set-pop-stat-y-maxmsg) "vm-pop" nil nil nil)
|
|
1815
|
|
1816 (autoload (quote vm-set-pop-stat-y-got) "vm-pop" nil nil nil)
|
|
1817
|
|
1818 (autoload (quote vm-set-pop-stat-y-need) "vm-pop" nil nil nil)
|
|
1819
|
|
1820 (autoload (quote vm-pop-start-status-timer) "vm-pop" nil nil nil)
|
|
1821
|
|
1822 (autoload (quote vm-pop-stop-status-timer) "vm-pop" nil nil nil)
|
|
1823
|
|
1824 (autoload (quote vm-pop-report-retrieval-status) "vm-pop" nil nil nil)
|
0
|
1825
|
|
1826 (autoload (quote vm-pop-send-command) "vm-pop" nil nil nil)
|
|
1827
|
|
1828 (autoload (quote vm-pop-read-response) "vm-pop" nil nil nil)
|
|
1829
|
110
|
1830 (autoload (quote vm-pop-read-past-dot-sentinel-line) "vm-pop" nil nil nil)
|
|
1831
|
0
|
1832 (autoload (quote vm-pop-read-stat-response) "vm-pop" nil nil nil)
|
|
1833
|
110
|
1834 (autoload (quote vm-pop-read-list-response) "vm-pop" nil nil nil)
|
|
1835
|
|
1836 (autoload (quote vm-pop-ask-about-large-message) "vm-pop" nil nil nil)
|
|
1837
|
0
|
1838 (autoload (quote vm-pop-retrieve-to-crashbox) "vm-pop" nil nil nil)
|
|
1839
|
|
1840 (autoload (quote vm-pop-cleanup-region) "vm-pop" nil nil nil)
|
|
1841
|
|
1842 (autoload (quote vm-pop-md5) "vm-pop" nil nil nil)
|
|
1843
|
|
1844 (autoload (quote vm-do-reply) "vm-reply" nil nil nil)
|
|
1845
|
|
1846 (autoload (quote vm-strip-ignored-addresses) "vm-reply" nil nil nil)
|
|
1847
|
|
1848 (autoload (quote vm-ignored-reply-to) "vm-reply" nil nil nil)
|
|
1849
|
|
1850 (autoload (quote vm-mail-yank-default) "vm-reply" nil nil nil)
|
|
1851
|
|
1852 (autoload (quote vm-yank-message-other-folder) "vm-reply" "Like vm-yank-message except the message is yanked from a folder other
|
|
1853 than the one that spawned the current Mail mode buffer. The name of the
|
|
1854 folder is read from the minibuffer.
|
|
1855
|
|
1856 Don't call this function from a program." t nil)
|
|
1857
|
|
1858 (autoload (quote vm-yank-message) "vm-reply" "Yank message number N into the current buffer at point.
|
|
1859 When called interactively N is always read from the minibuffer. When
|
|
1860 called non-interactively the first argument is expected to be a
|
|
1861 message struct.
|
|
1862
|
|
1863 This command is meant to be used in VM created Mail mode buffers; the
|
|
1864 yanked message comes from the mail buffer containing the message you
|
|
1865 are replying to, forwarding, or invoked VM's mail command from.
|
|
1866
|
|
1867 All message headers are yanked along with the text. Point is
|
|
1868 left before the inserted text, the mark after. Any hook
|
|
1869 functions bound to mail-citation-hook are run, after inserting
|
|
1870 the text and setting point and mark. For backward compatibility,
|
|
1871 if mail-citation-hook is set to nil, `mail-yank-hooks' is run
|
|
1872 instead.
|
|
1873
|
|
1874 If mail-citation-hook and mail-yank-hooks are both nil, this
|
|
1875 default action is taken: the yanked headers are trimmed as
|
|
1876 specified by vm-included-text-headers and
|
|
1877 vm-included-text-discard-header-regexp, and the value of
|
|
1878 vm-included-text-prefix is prepended to every yanked line." t nil)
|
|
1879
|
|
1880 (autoload (quote vm-mail-send-and-exit) "vm-reply" "Just like mail-send-and-exit except that VM flags the appropriate message(s)
|
|
1881 as having been replied to, if appropriate." t nil)
|
|
1882
|
|
1883 (autoload (quote vm-keep-mail-buffer) "vm-reply" nil nil nil)
|
|
1884
|
|
1885 (autoload (quote vm-help-tale) "vm-reply" nil nil nil)
|
|
1886
|
|
1887 (autoload (quote vm-mail-send) "vm-reply" "Just like mail-send except that VM flags the appropriate message(s)
|
|
1888 as replied to, forwarded, etc, if appropriate." t nil)
|
|
1889
|
98
|
1890 (autoload (quote vm-mail-mode-get-header-contents) "vm-reply" nil nil nil)
|
|
1891
|
0
|
1892 (autoload (quote vm-rename-current-mail-buffer) "vm-reply" nil nil nil)
|
|
1893
|
|
1894 (autoload (quote vm-mail-mark-replied) "vm-reply" nil nil nil)
|
|
1895
|
|
1896 (autoload (quote vm-mail-mark-forwarded) "vm-reply" nil nil nil)
|
|
1897
|
|
1898 (autoload (quote vm-mail-mark-redistributed) "vm-reply" nil nil nil)
|
|
1899
|
|
1900 (autoload (quote vm-reply) "vm-reply" "Reply to the sender of the current message.
|
|
1901 Numeric prefix argument N means to reply to the current message plus the
|
|
1902 next N-1 messages. A negative N means reply to the current message and
|
|
1903 the previous N-1 messages.
|
|
1904
|
|
1905 If invoked on marked messages (via vm-next-command-uses-marks),
|
|
1906 all marked messages will be replied to.
|
|
1907
|
|
1908 You will be placed into a standard Emacs Mail mode buffer to compose and
|
|
1909 send your message. See the documentation for the function `mail' for
|
|
1910 more info.
|
|
1911
|
|
1912 Note that the normal binding of C-c C-y in the reply buffer is
|
|
1913 automatically changed to vm-yank-message during a reply. This
|
|
1914 allows you to yank any message from the current folder into a
|
|
1915 reply.
|
|
1916
|
|
1917 Normal VM commands may be accessed in the reply buffer by prefixing them
|
|
1918 with C-c C-v." t nil)
|
|
1919
|
|
1920 (autoload (quote vm-reply-include-text) "vm-reply" "Reply to the sender (only) of the current message and include text
|
|
1921 from the message. See the documentation for function vm-reply for details." t nil)
|
|
1922
|
|
1923 (autoload (quote vm-followup) "vm-reply" "Reply to all recipients of the current message.
|
|
1924 See the documentation for the function vm-reply for details." t nil)
|
|
1925
|
|
1926 (autoload (quote vm-followup-include-text) "vm-reply" "Reply to all recipients of the current message and include text from
|
|
1927 the message. See the documentation for the function vm-reply for details." t nil)
|
|
1928
|
|
1929 (autoload (quote vm-forward-message-all-headers) "vm-reply" "Like vm-forward-message but always forwards all the headers." t nil)
|
|
1930
|
|
1931 (autoload (quote vm-forward-message) "vm-reply" "Forward the current message to one or more recipients.
|
|
1932 You will be placed in a Mail mode buffer as you would with a
|
|
1933 reply, but you must fill in the To: header and perhaps the
|
|
1934 Subject: header manually." t nil)
|
|
1935
|
|
1936 (autoload (quote vm-resend-bounced-message) "vm-reply" "Extract the original text from a bounced message and resend it.
|
|
1937 You will be placed in a Mail mode buffer with the extracted message and
|
|
1938 you can change the recipient address before resending the message." t nil)
|
|
1939
|
|
1940 (autoload (quote vm-resend-message) "vm-reply" "Resend the current message to someone else.
|
|
1941 The current message will be copied to a Mail mode buffer and you
|
|
1942 can edit the message and send it as usual.
|
|
1943
|
70
|
1944 NOTE: since you are doing a resend, a Resent-To header is
|
|
1945 provided for you to fill in. If you don't fill it in, when you
|
|
1946 send the message it will go to the original recipients listed in
|
|
1947 the To and Cc headers. You may also create a Resent-Cc header." t nil)
|
0
|
1948
|
|
1949 (autoload (quote vm-send-digest) "vm-reply" "Send a digest of all messages in the current folder to recipients.
|
|
1950 The type of the digest is specified by the variable vm-digest-send-type.
|
|
1951 You will be placed in a Mail mode buffer as is usual with replies, but you
|
|
1952 must fill in the To: and Subject: headers manually.
|
|
1953
|
|
1954 Prefix arg means to insert a list of preamble lines at the beginning of
|
|
1955 the digest. One line is generated for each message being digestified.
|
|
1956 The variable vm-digest-preamble-format determines the format of the
|
|
1957 preamble lines.
|
|
1958
|
|
1959 If invoked on marked messages (via vm-next-command-uses-marks),
|
|
1960 only marked messages will be put into the digest." t nil)
|
|
1961
|
|
1962 (autoload (quote vm-send-rfc934-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 934 digest." t nil)
|
|
1963
|
|
1964 (autoload (quote vm-send-rfc1153-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 1153 digest." t nil)
|
|
1965
|
98
|
1966 (autoload (quote vm-send-mime-digest) "vm-reply" "Like vm-send-digest but always sends an MIME (multipart/digest) digest." t nil)
|
|
1967
|
0
|
1968 (autoload (quote vm-continue-composing-message) "vm-reply" "Find and select the most recently used mail composition buffer.
|
|
1969 If the selected buffer is already a Mail mode buffer then it is
|
|
1970 buried before beginning the search. Non Mail mode buffers and
|
|
1971 unmodified Mail buffers are skipped. Prefix arg means unmodified
|
|
1972 Mail mode buffers are not skipped. If no suitable buffer is
|
|
1973 found, the current buffer remains selected." t nil)
|
|
1974
|
98
|
1975 (autoload (quote vm-mail-to-mailto-url) "vm-reply" nil nil nil)
|
|
1976
|
0
|
1977 (autoload (quote vm-mail-internal) "vm-reply" nil nil nil)
|
|
1978
|
|
1979 (autoload (quote vm-reply-other-frame) "vm-reply" "Like vm-reply, but run in a newly created frame." t nil)
|
|
1980
|
|
1981 (autoload (quote vm-reply-include-text-other-frame) "vm-reply" "Like vm-reply-include-text, but run in a newly created frame." t nil)
|
|
1982
|
|
1983 (autoload (quote vm-followup-other-frame) "vm-reply" "Like vm-followup, but run in a newly created frame." t nil)
|
|
1984
|
|
1985 (autoload (quote vm-followup-include-text-other-frame) "vm-reply" "Like vm-followup-include-text, but run in a newly created frame." t nil)
|
|
1986
|
|
1987 (autoload (quote vm-forward-message-all-headers-other-frame) "vm-reply" "Like vm-forward-message-all-headers, but run in a newly created frame." t nil)
|
|
1988
|
|
1989 (autoload (quote vm-forward-message-other-frame) "vm-reply" "Like vm-forward-message, but run in a newly created frame." t nil)
|
|
1990
|
|
1991 (autoload (quote vm-resend-message-other-frame) "vm-reply" "Like vm-resend-message, but run in a newly created frame." t nil)
|
|
1992
|
|
1993 (autoload (quote vm-resend-bounced-message-other-frame) "vm-reply" "Like vm-resend-bounced-message, but run in a newly created frame." t nil)
|
|
1994
|
|
1995 (autoload (quote vm-send-digest-other-frame) "vm-reply" "Like vm-send-digest, but run in a newly created frame." t nil)
|
|
1996
|
|
1997 (autoload (quote vm-send-rfc934-digest-other-frame) "vm-reply" "Like vm-send-rfc934-digest, but run in a newly created frame." t nil)
|
|
1998
|
|
1999 (autoload (quote vm-send-rfc1153-digest-other-frame) "vm-reply" "Like vm-send-rfc1153-digest, but run in a newly created frame." t nil)
|
|
2000
|
98
|
2001 (autoload (quote vm-send-mime-digest-other-frame) "vm-reply" "Like vm-send-mime-digest, but run in a newly created frame." t nil)
|
|
2002
|
0
|
2003 (autoload (quote vm-match-data) "vm-save" nil nil nil)
|
|
2004
|
|
2005 (autoload (quote vm-auto-select-folder) "vm-save" nil nil nil)
|
|
2006
|
|
2007 (autoload (quote vm-auto-archive-messages) "vm-save" "Save all unfiled messages that auto-match a folder via
|
|
2008 vm-auto-folder-alist to their appropriate folders. Messages that
|
|
2009 are flagged for deletion are not saved.
|
|
2010
|
|
2011 Prefix arg means to ask user for confirmation before saving each message.
|
|
2012
|
|
2013 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
2014 only marked messages are checked against vm-auto-folder-alist.
|
|
2015
|
|
2016 The saved messages are flagged as `filed'." t nil)
|
|
2017
|
|
2018 (autoload (quote vm-save-message) "vm-save" "Save the current message to a mail folder.
|
|
2019 If the folder already exists, the message will be appended to it.
|
|
2020
|
|
2021 Prefix arg COUNT means save this message and the next COUNT-1
|
|
2022 messages. A negative COUNT means save this message and the
|
|
2023 previous COUNT-1 messages.
|
|
2024
|
|
2025 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
2026 all marked messages in the current folder are saved; other messages are
|
|
2027 ignored.
|
|
2028
|
|
2029 The saved messages are flagged as `filed'." t nil)
|
|
2030
|
|
2031 (autoload (quote vm-save-message-sans-headers) "vm-save" "Save the current message to a file, without its header section.
|
|
2032 If the file already exists, the message will be appended to it.
|
|
2033 Prefix arg COUNT means save the next COUNT messages. A negative COUNT means
|
|
2034 save the previous COUNT.
|
|
2035
|
|
2036 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
2037 all marked messages in the current folder are saved; other messages are
|
|
2038 ignored.
|
|
2039
|
|
2040 The saved messages are flagged as `written'.
|
|
2041
|
|
2042 This command should NOT be used to save message to mail folders; use
|
|
2043 vm-save-message instead (normally bound to `s')." t nil)
|
|
2044
|
70
|
2045 (autoload (quote vm-pipe-message-to-command) "vm-save" "Run shell command with the some or all of the current message as input.
|
|
2046 By default the entire message is used.
|
0
|
2047 With one \\[universal-argument] the text portion of the message is used.
|
|
2048 With two \\[universal-argument]'s the header portion of the message is used.
|
|
2049 With three \\[universal-argument]'s the visible header portion of the message
|
|
2050 plus the text portion is used.
|
|
2051
|
|
2052 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
2053 each marked message is successively piped to the shell command,
|
|
2054 one message per command invocation.
|
|
2055
|
|
2056 Output, if any, is displayed. The message is not altered." t nil)
|
|
2057
|
110
|
2058 (autoload (quote vm-print-message) "vm-save" "Print the current message
|
|
2059 Prefix arg N means print the current message and the next N - 1 messages.
|
|
2060 Prefix arg -N means print the current message and the previous N - 1 messages.
|
|
2061
|
114
|
2062 The variable `vm-print-command' controls what command is run to
|
110
|
2063 print the message, and `vm-print-command-switches' is a list of switches
|
|
2064 to pass to the command.
|
|
2065
|
|
2066 When invoked on marked messages (via vm-next-command-uses-marks),
|
|
2067 each marked message is printed, one message per vm-print-command invocation.
|
|
2068
|
|
2069 Output, if any, is displayed. The message is not altered." t nil)
|
0
|
2070
|
|
2071 (autoload (quote vm-isearch-forward) "vm-search" "Incrementally search forward through the current folder's messages.
|
|
2072 Usage is identical to the standard Emacs incremental search.
|
|
2073 When the search terminates the message containing point will be selected.
|
|
2074
|
|
2075 If the variable vm-search-using-regexps is non-nil, regular expressions
|
|
2076 are understood; nil means the search will be for the input string taken
|
|
2077 literally. Specifying a prefix ARG interactively toggles the value of
|
|
2078 vm-search-using-regexps for this search." t nil)
|
|
2079
|
|
2080 (autoload (quote vm-isearch-backward) "vm-search" "Incrementally search backward through the current folder's messages.
|
|
2081 Usage is identical to the standard Emacs incremental search.
|
|
2082 When the search terminates the message containing point will be selected.
|
|
2083
|
|
2084 If the variable vm-search-using-regexps is non-nil, regular expressions
|
|
2085 are understood; nil means the search will be for the input string taken
|
|
2086 literally. Specifying a prefix ARG interactively toggles the value of
|
|
2087 vm-search-using-regexps for this search." t nil)
|
|
2088
|
|
2089 (autoload (quote vm-isearch) "vm-search" nil nil nil)
|
|
2090
|
|
2091 (autoload (quote vm-isearch-widen) "vm-search" nil nil nil)
|
|
2092
|
|
2093 (autoload (quote vm-isearch-narrow) "vm-search" nil nil nil)
|
|
2094
|
|
2095 (autoload (quote vm-isearch-update) "vm-search" nil nil nil)
|
|
2096
|
|
2097 (autoload (quote vm-move-message-forward) "vm-sort" "Move a message forward in a VM folder.
|
|
2098 Prefix arg COUNT causes the current message to be moved COUNT messages forward.
|
|
2099 A negative COUNT causes movement to be backward instead of forward.
|
|
2100 COUNT defaults to 1. The current message remains selected after being
|
|
2101 moved.
|
|
2102
|
|
2103 If vm-move-messages-physically is non-nil, the physical copy of
|
|
2104 the message in the folder is moved. A nil value means just
|
|
2105 change the presentation order and leave the physical order of
|
|
2106 the folder undisturbed." t nil)
|
|
2107
|
|
2108 (autoload (quote vm-move-message-backward) "vm-sort" "Move a message backward in a VM folder.
|
|
2109 Prefix arg COUNT causes the current message to be moved COUNT
|
|
2110 messages backward. A negative COUNT causes movement to be
|
|
2111 forward instead of backward. COUNT defaults to 1. The current
|
|
2112 message remains selected after being moved.
|
|
2113
|
|
2114 If vm-move-messages-physically is non-nil, the physical copy of
|
|
2115 the message in the folder is moved. A nil value means just
|
|
2116 change the presentation order and leave the physical order of
|
|
2117 the folder undisturbed." t nil)
|
|
2118
|
|
2119 (autoload (quote vm-move-message-forward-physically) "vm-sort" "Like vm-move-message-forward but always move the message physically." t nil)
|
|
2120
|
|
2121 (autoload (quote vm-move-message-backward-physically) "vm-sort" "Like vm-move-message-backward but always move the message physically." t nil)
|
|
2122
|
|
2123 (autoload (quote vm-physically-move-message) "vm-sort" nil nil nil)
|
|
2124
|
|
2125 (autoload (quote vm-so-sortable-datestring) "vm-sort" nil nil nil)
|
|
2126
|
|
2127 (autoload (quote vm-so-sortable-subject) "vm-sort" nil nil nil)
|
|
2128
|
|
2129 (autoload (quote vm-sort-messages) "vm-sort" "Sort message in a folder by the specified KEYS.
|
|
2130 You may sort by more than one particular message key. If
|
|
2131 messages compare equal by the first key, the second key will be
|
|
2132 compared and so on. When called interactively the keys will be
|
|
2133 read from the minibuffer. Valid keys are
|
|
2134
|
|
2135 \"date\" \"reversed-date\"
|
|
2136 \"author\" \"reversed-author\"
|
|
2137 \"subject\" \"reversed-subject\"
|
|
2138 \"recipients\" \"reversed-recipients\"
|
|
2139 \"line-count\" \"reversed-line-count\"
|
|
2140 \"byte-count\" \"reversed-byte-count\"
|
|
2141 \"physical-order\" \"reversed-physical-order\"
|
|
2142
|
|
2143 Optional second arg (prefix arg interactively) means the sort
|
|
2144 should change the physical order of the messages in the folder.
|
|
2145 Normally VM changes presentation order only, leaving the
|
|
2146 folder in the order in which the messages arrived." t nil)
|
|
2147
|
|
2148 (autoload (quote vm-sort-compare-xxxxxx) "vm-sort" nil nil nil)
|
|
2149
|
|
2150 (autoload (quote vm-sort-compare-thread) "vm-sort" nil nil nil)
|
|
2151
|
|
2152 (autoload (quote vm-sort-compare-author) "vm-sort" nil nil nil)
|
|
2153
|
|
2154 (autoload (quote vm-sort-compare-author-r) "vm-sort" nil nil nil)
|
|
2155
|
|
2156 (autoload (quote vm-sort-compare-date) "vm-sort" nil nil nil)
|
|
2157
|
|
2158 (autoload (quote vm-sort-compare-date-r) "vm-sort" nil nil nil)
|
|
2159
|
|
2160 (autoload (quote vm-sort-compare-recipients) "vm-sort" nil nil nil)
|
|
2161
|
|
2162 (autoload (quote vm-sort-compare-recipients-r) "vm-sort" nil nil nil)
|
|
2163
|
|
2164 (autoload (quote vm-sort-compare-subject) "vm-sort" nil nil nil)
|
|
2165
|
|
2166 (autoload (quote vm-sort-compare-subject-r) "vm-sort" nil nil nil)
|
|
2167
|
|
2168 (autoload (quote vm-sort-compare-line-count) "vm-sort" nil nil nil)
|
|
2169
|
|
2170 (autoload (quote vm-sort-compare-line-count-r) "vm-sort" nil nil nil)
|
|
2171
|
|
2172 (autoload (quote vm-sort-compare-byte-count) "vm-sort" nil nil nil)
|
|
2173
|
|
2174 (autoload (quote vm-sort-compare-byte-count-r) "vm-sort" nil nil nil)
|
|
2175
|
|
2176 (autoload (quote vm-sort-compare-physical-order) "vm-sort" nil nil nil)
|
|
2177
|
|
2178 (autoload (quote vm-sort-compare-physical-order-r) "vm-sort" nil nil nil)
|
|
2179
|
|
2180 (autoload (quote vm) "vm-startup" "Read mail under Emacs.
|
|
2181 Optional first arg FOLDER specifies the folder to visit. It defaults
|
|
2182 to the value of vm-primary-inbox. The folder buffer is put into VM
|
|
2183 mode, a major mode for reading mail.
|
|
2184
|
|
2185 Prefix arg or optional second arg READ-ONLY non-nil indicates
|
|
2186 that the folder should be considered read only. No attribute
|
120
|
2187 changes, message additions or deletions will be allowed in the
|
0
|
2188 visited folder.
|
|
2189
|
|
2190 Visiting the primary inbox causes any contents of the system mailbox to
|
|
2191 be moved and appended to the resulting buffer.
|
|
2192
|
|
2193 All the messages can be read by repeatedly pressing SPC. Use `n'ext and
|
|
2194 `p'revious to move about in the folder. Messages are marked for
|
|
2195 deletion with `d', and saved to another folder with `s'. Quitting VM
|
|
2196 with `q' expunges deleted messages and saves the buffered folder to
|
|
2197 disk.
|
|
2198
|
|
2199 See the documentation for vm-mode for more information." t nil)
|
|
2200
|
|
2201 (autoload (quote vm-other-frame) "vm-startup" "Like vm, but run in a newly created frame." t nil)
|
|
2202
|
|
2203 (autoload (quote vm-other-window) "vm-startup" "Like vm, but run in a different window." t nil)
|
|
2204
|
|
2205 (autoload (quote vm-mode) "vm-startup" "Major mode for reading mail.
|
|
2206
|
126
|
2207 This is VM 6.26.
|
0
|
2208
|
|
2209 Commands:
|
|
2210 h - summarize folder contents
|
|
2211 C-t - toggle threads display
|
|
2212
|
|
2213 n - go to next message
|
|
2214 p - go to previous message
|
|
2215 N - like `n' but ignores skip-variable settings
|
|
2216 P - like `p' but ignores skip-variable settings
|
|
2217 M-n - go to next unread message
|
|
2218 M-p - go to previous unread message
|
|
2219 RET - go to numbered message (uses prefix arg or prompts in minibuffer)
|
|
2220 TAB - go to last message seen
|
|
2221 ^ - go to parent of this message
|
|
2222 M-s - incremental search through the folder
|
|
2223
|
|
2224 t - display hidden headers
|
|
2225 SPC - expose message body or scroll forward a page
|
|
2226 b - scroll backward a page
|
|
2227 < - go to beginning of current message
|
|
2228 > - go to end of current message
|
|
2229
|
|
2230 d - delete message, prefix arg deletes messages forward
|
|
2231 C-d - delete message, prefix arg deletes messages backward
|
|
2232 u - undelete
|
|
2233 k - flag for deletion all messages with same subject as the current message
|
|
2234
|
|
2235 r - reply (only to the sender of the message)
|
|
2236 R - reply with included text from the current message
|
|
2237 M-r - extract and resend bounced message
|
|
2238 f - followup (reply to all recipients of message)
|
|
2239 F - followup with included text from the current message
|
|
2240 z - forward the current message
|
|
2241 m - send a message
|
|
2242 B - resend the current message to another user.
|
|
2243 c - continue composing the most recent message you were composing
|
|
2244
|
|
2245 @ - digestify and mail entire folder contents (the folder is not modified)
|
|
2246 * - burst a digest into individual messages, and append and assimilate these
|
98
|
2247 messages into the current folder.
|
0
|
2248
|
|
2249 G - sort messages by various keys
|
|
2250
|
|
2251 g - get any new mail that has arrived in the system mailbox
|
|
2252 (new mail is appended to the disk and buffer copies of the
|
|
2253 primary inbox.)
|
|
2254 v - visit another mail folder
|
|
2255
|
|
2256 e - edit the current message
|
|
2257 j - discard cached information about the current message
|
|
2258
|
|
2259 s - save current message in a folder (appends if folder already exists)
|
|
2260 w - write current message to a file without its headers (appends if exists)
|
|
2261 S - save entire folder to disk, does not expunge
|
|
2262 A - save unfiled messages to their vm-auto-folder-alist specified folders
|
|
2263 # - expunge deleted messages (without saving folder)
|
|
2264 q - quit VM, deleted messages are not expunged, folder is
|
|
2265 saved to disk if it is modified. new messages are changed
|
|
2266 to be flagged as just unread.
|
|
2267 x - exit VM with no change to the folder
|
|
2268
|
|
2269 M N - use marks; the next vm command will affect only marked messages
|
110
|
2270 if it makes sense for the command to do so. These commands
|
|
2271 apply and remove marks to messages.
|
0
|
2272
|
|
2273 M M - mark the current message
|
|
2274 M U - unmark the current message
|
|
2275 M m - mark all messages
|
|
2276 M u - unmark all messages
|
98
|
2277 M C - mark messages matched by a virtual folder selector
|
|
2278 M c - unmark messages matched by a virtual folder selector
|
0
|
2279 M T - mark thread tree rooted at the current message
|
|
2280 M t - unmark thread tree rooted at the current message
|
|
2281 M S - mark messages with the same subject as the current message
|
|
2282 M s - unmark messages with the same subject as the current message
|
|
2283 M A - mark messages with the same author as the current message
|
|
2284 M a - unmark messages with the same author as the current message
|
98
|
2285 M R - mark messages within the point/mark region in the summary
|
|
2286 M r - unmark messages within the point/mark region in the summary
|
0
|
2287
|
|
2288 M ? - partial help for mark commands
|
|
2289
|
|
2290 W S - save the current window configuration to a name
|
|
2291 W D - delete a window configuration
|
|
2292 W W - apply a configuration
|
|
2293 W ? - help for the window configuration commands
|
|
2294
|
|
2295 V V - visit a virtual folder (must be defined in vm-virtual-folder-alist)
|
|
2296 V C - create a virtual folder composed of a subset of the
|
|
2297 current folder's messages.
|
|
2298 V A - apply the selectors of a named virtual folder to the
|
|
2299 messages in the current folder and create a virtual folder
|
|
2300 containing the selected messages.
|
|
2301 V M - toggle whether this virtual folder's messages mirror the
|
|
2302 underlying real messages' attributes.
|
|
2303 V ? - help for virtual folder commands
|
|
2304
|
|
2305 C-_ - undo, special undo that retracts the most recent
|
110
|
2306 changes in message attributes and labels. Expunges,
|
0
|
2307 message edits, and saves cannot be undone. C-x u is
|
|
2308 also bound to this command.
|
|
2309
|
|
2310 a - set message attributes
|
|
2311
|
|
2312 l a - add labels to message
|
|
2313 l d - delete labels from message
|
|
2314
|
|
2315 L - reload your VM init file, ~/.vm
|
|
2316
|
|
2317 % - change a folder to another type
|
|
2318
|
|
2319 ? - help
|
|
2320
|
|
2321 ! - run a shell command
|
|
2322 | - run a shell command with the current message as input
|
|
2323
|
|
2324 M-C - view conditions under which you may redistribute VM
|
|
2325 M-W - view the details of VM's lack of a warranty
|
|
2326
|
|
2327 Use M-x vm-submit-bug-report to submit a bug report.
|
|
2328
|
|
2329 Variables:
|
|
2330 vm-arrived-message-hook
|
|
2331 vm-arrived-messages-hook
|
|
2332 vm-auto-center-summary
|
98
|
2333 vm-auto-decode-mime-messages
|
|
2334 vm-auto-displayed-mime-content-types
|
0
|
2335 vm-auto-folder-alist
|
|
2336 vm-auto-folder-case-fold-search
|
|
2337 vm-auto-get-new-mail
|
|
2338 vm-auto-next-message
|
|
2339 vm-berkeley-mail-compatibility
|
98
|
2340 vm-burst-digest-messages-inherit-labels
|
0
|
2341 vm-check-folder-types
|
|
2342 vm-circular-folders
|
|
2343 vm-confirm-new-folders
|
|
2344 vm-confirm-quit
|
98
|
2345 vm-convert-folder-types
|
0
|
2346 vm-crash-box
|
98
|
2347 vm-crash-box-suffix
|
0
|
2348 vm-default-folder-type
|
|
2349 vm-delete-after-archiving
|
|
2350 vm-delete-after-bursting
|
|
2351 vm-delete-after-saving
|
|
2352 vm-delete-empty-folders
|
|
2353 vm-digest-burst-type
|
|
2354 vm-digest-center-preamble
|
|
2355 vm-digest-preamble-format
|
|
2356 vm-digest-send-type
|
|
2357 vm-display-buffer-hook
|
98
|
2358 vm-display-using-mime
|
0
|
2359 vm-edit-message-hook
|
|
2360 vm-folder-directory
|
|
2361 vm-folder-read-only
|
|
2362 vm-follow-summary-cursor
|
|
2363 vm-forward-message-hook
|
|
2364 vm-forwarded-headers
|
|
2365 vm-forwarding-digest-type
|
|
2366 vm-forwarding-subject-format
|
|
2367 vm-frame-parameter-alist
|
98
|
2368 vm-frame-per-completion
|
0
|
2369 vm-frame-per-composition
|
98
|
2370 vm-frame-per-edit
|
0
|
2371 vm-frame-per-folder
|
98
|
2372 vm-frame-per-summary
|
0
|
2373 vm-highlighted-header-face
|
|
2374 vm-highlighted-header-regexp
|
|
2375 vm-honor-page-delimiters
|
110
|
2376 vm-image-directory
|
0
|
2377 vm-in-reply-to-format
|
|
2378 vm-included-text-attribution-format
|
|
2379 vm-included-text-discard-header-regexp
|
|
2380 vm-included-text-headers
|
|
2381 vm-included-text-prefix
|
|
2382 vm-invisible-header-regexp
|
|
2383 vm-jump-to-new-messages
|
|
2384 vm-jump-to-unread-messages
|
98
|
2385 vm-keep-crash-boxes
|
70
|
2386 vm-keep-sent-messages
|
110
|
2387 vm-mail-check-interval
|
0
|
2388 vm-mail-header-from
|
|
2389 vm-mail-mode-hook
|
98
|
2390 vm-make-crash-box-name
|
|
2391 vm-make-spool-file-name
|
|
2392 vm-mime-8bit-composition-charset
|
|
2393 vm-mime-8bit-text-transfer-encoding
|
|
2394 vm-mime-alternative-select-method
|
|
2395 vm-mime-attachment-auto-type-alist
|
|
2396 vm-mime-attachment-save-directory
|
|
2397 vm-mime-avoid-folding-content-type
|
|
2398 vm-mime-base64-decoder-program
|
|
2399 vm-mime-base64-decoder-switches
|
|
2400 vm-mime-base64-encoder-program
|
|
2401 vm-mime-base64-encoder-switches
|
|
2402 vm-mime-button-face
|
110
|
2403 vm-mime-charset-font-alist
|
|
2404 vm-mime-default-face-charsets
|
98
|
2405 vm-mime-digest-discard-header-regexp
|
|
2406 vm-mime-digest-headers
|
|
2407 vm-mime-display-function
|
|
2408 vm-mime-external-content-types-alist
|
114
|
2409 vm-mime-ignore-mime-version
|
98
|
2410 vm-mime-internal-content-types
|
|
2411 vm-mime-max-message-size
|
0
|
2412 vm-mode-hook
|
|
2413 vm-mosaic-program
|
114
|
2414 vm-mosaic-program-switches
|
0
|
2415 vm-move-after-deleting
|
98
|
2416 vm-move-after-killing
|
0
|
2417 vm-move-after-undeleting
|
|
2418 vm-move-messages-physically
|
98
|
2419 vm-mutable-frames
|
70
|
2420 vm-mutable-windows
|
0
|
2421 vm-netscape-program
|
114
|
2422 vm-netscape-program-switches
|
110
|
2423 vm-pop-bytes-per-session
|
|
2424 vm-pop-max-message-size
|
0
|
2425 vm-pop-md5-program
|
110
|
2426 vm-pop-messages-per-session
|
98
|
2427 vm-popup-menu-on-mouse-3
|
|
2428 vm-preferences-file
|
0
|
2429 vm-preview-lines
|
|
2430 vm-preview-read-messages
|
|
2431 vm-primary-inbox
|
|
2432 vm-quit-hook
|
|
2433 vm-recognize-pop-maildrops
|
|
2434 vm-reply-hook
|
98
|
2435 vm-reply-ignored-addresses
|
70
|
2436 vm-reply-ignored-reply-tos
|
0
|
2437 vm-reply-subject-prefix
|
|
2438 vm-resend-bounced-discard-header-regexp
|
|
2439 vm-resend-bounced-headers
|
|
2440 vm-resend-bounced-message-hook
|
|
2441 vm-resend-discard-header-regexp
|
|
2442 vm-resend-headers
|
|
2443 vm-resend-message-hook
|
|
2444 vm-retrieved-spooled-mail-hook
|
|
2445 vm-rfc1153-digest-discard-header-regexp
|
|
2446 vm-rfc1153-digest-headers
|
|
2447 vm-rfc934-digest-discard-header-regexp
|
|
2448 vm-rfc934-digest-headers
|
|
2449 vm-search-using-regexps
|
|
2450 vm-select-message-hook
|
|
2451 vm-select-new-message-hook
|
|
2452 vm-select-unread-message-hook
|
|
2453 vm-send-digest-hook
|
98
|
2454 vm-send-using-mime
|
0
|
2455 vm-skip-deleted-messages
|
|
2456 vm-skip-read-messages
|
110
|
2457 vm-spool-file-suffixes
|
0
|
2458 vm-spool-files
|
|
2459 vm-startup-with-summary
|
|
2460 vm-strip-reply-headers
|
|
2461 vm-summary-arrow
|
|
2462 vm-summary-format
|
|
2463 vm-summary-highlight-face
|
|
2464 vm-summary-mode-hook
|
|
2465 vm-summary-redo-hook
|
|
2466 vm-summary-show-threads
|
|
2467 vm-summary-thread-indent-level
|
110
|
2468 vm-tale-is-an-idiot
|
98
|
2469 vm-temp-file-directory
|
0
|
2470 vm-trust-From_-with-Content-Length
|
|
2471 vm-undisplay-buffer-hook
|
|
2472 vm-unforwarded-header-regexp
|
|
2473 vm-url-browser
|
|
2474 vm-url-search-limit
|
|
2475 vm-use-menus
|
98
|
2476 vm-use-toolbar
|
0
|
2477 vm-virtual-folder-alist
|
|
2478 vm-virtual-mirror
|
|
2479 vm-visible-headers
|
|
2480 vm-visit-folder-hook
|
|
2481 vm-visit-when-saving
|
|
2482 vm-warp-mouse-to-new-frame
|
|
2483 vm-window-configuration-file
|
|
2484 " t nil)
|
|
2485
|
|
2486 (autoload (quote vm-visit-folder) "vm-startup" "Visit a mail file.
|
|
2487 VM will parse and present its messages to you in the usual way.
|
|
2488
|
|
2489 First arg FOLDER specifies the mail file to visit. When this
|
|
2490 command is called interactively the file name is read from the
|
|
2491 minibuffer.
|
|
2492
|
|
2493 Prefix arg or optional second arg READ-ONLY non-nil indicates
|
|
2494 that the folder should be considered read only. No attribute
|
|
2495 changes, messages additions or deletions will be allowed in the
|
|
2496 visited folder." t nil)
|
|
2497
|
|
2498 (autoload (quote vm-visit-folder-other-frame) "vm-startup" "Like vm-visit-folder, but run in a newly created frame." t nil)
|
|
2499
|
|
2500 (autoload (quote vm-visit-folder-other-window) "vm-startup" "Like vm-visit-folder, but run in a different window." t nil)
|
|
2501
|
|
2502 (autoload (quote vm-virtual-mode) "vm-startup" "Mode for reading multiple mail folders as one folder.
|
|
2503
|
|
2504 The commands available are the same commands that are found in
|
|
2505 vm-mode, except that a few of them are not applicable to virtual
|
|
2506 folders.
|
|
2507
|
|
2508 vm-virtual-mode is not a normal major mode. If you run it, it
|
|
2509 will not do anything. The entry point to vm-virtual-mode is
|
|
2510 vm-visit-virtual-folder." nil nil)
|
|
2511
|
|
2512 (autoload (quote vm-visit-virtual-folder) "vm-startup" nil t nil)
|
|
2513
|
|
2514 (autoload (quote vm-visit-virtual-folder-other-frame) "vm-startup" "Like vm-visit-virtual-folder, but run in a newly created frame." t nil)
|
|
2515
|
|
2516 (autoload (quote vm-visit-virtual-folder-other-window) "vm-startup" "Like vm-visit-virtual-folder, but run in a different window." t nil)
|
|
2517
|
70
|
2518 (autoload (quote vm-mail) "vm-startup" "Send a mail message from within VM, or from without." t nil)
|
|
2519
|
|
2520 (autoload (quote vm-mail-other-frame) "vm-startup" "Like vm-mail, but run in a newly created frame." t nil)
|
|
2521
|
|
2522 (autoload (quote vm-mail-other-window) "vm-startup" "Like vm-mail, but run in a different window." t nil)
|
0
|
2523
|
|
2524 (autoload (quote vm-submit-bug-report) "vm-startup" "Submit a bug report, with pertinent information to the VM bug list." t nil)
|
|
2525
|
|
2526 (autoload (quote vm-load-init-file) "vm-startup" nil t nil)
|
|
2527
|
98
|
2528 (autoload (quote vm-check-emacs-version) "vm-startup" nil nil nil)
|
|
2529
|
110
|
2530 (autoload (quote vm-set-debug-flags) "vm-startup" nil nil nil)
|
|
2531
|
0
|
2532 (autoload (quote vm-session-initialization) "vm-startup" nil nil nil)
|
|
2533
|
|
2534 (autoload (quote vm-summary-mode-internal) "vm-summary" nil nil nil)
|
|
2535
|
|
2536 (autoload (quote vm-summarize) "vm-summary" "Summarize the contents of the folder in a summary buffer.
|
|
2537 The format is as described by the variable vm-summary-format. Generally
|
|
2538 one line per message is most pleasing to the eye but this is not
|
|
2539 mandatory." t nil)
|
|
2540
|
|
2541 (autoload (quote vm-summarize-other-frame) "vm-summary" "Like vm-summarize, but run in a newly created frame." t nil)
|
|
2542
|
|
2543 (autoload (quote vm-do-summary) "vm-summary" nil nil nil)
|
|
2544
|
|
2545 (autoload (quote vm-do-needed-summary-rebuild) "vm-summary" nil nil nil)
|
|
2546
|
|
2547 (autoload (quote vm-update-message-summary) "vm-summary" nil nil nil)
|
|
2548
|
|
2549 (autoload (quote vm-set-summary-pointer) "vm-summary" nil nil nil)
|
|
2550
|
|
2551 (autoload (quote vm-summary-highlight-region) "vm-summary" nil nil nil)
|
|
2552
|
|
2553 (autoload (quote vm-auto-center-summary) "vm-summary" nil nil nil)
|
|
2554
|
|
2555 (autoload (quote vm-sprintf) "vm-summary" nil nil nil)
|
|
2556
|
|
2557 (autoload (quote vm-tokenized-summary-insert) "vm-summary" nil nil nil)
|
|
2558
|
|
2559 (autoload (quote vm-compile-format) "vm-summary" nil nil nil)
|
|
2560
|
|
2561 (autoload (quote vm-get-header-contents) "vm-summary" nil nil nil)
|
|
2562
|
|
2563 (autoload (quote vm-left-justify-string) "vm-summary" nil nil nil)
|
|
2564
|
|
2565 (autoload (quote vm-right-justify-string) "vm-summary" nil nil nil)
|
|
2566
|
|
2567 (autoload (quote vm-truncate-string) "vm-summary" nil nil nil)
|
|
2568
|
|
2569 (autoload (quote vm-su-attribute-indicators) "vm-summary" nil nil nil)
|
|
2570
|
|
2571 (autoload (quote vm-su-attribute-indicators-long) "vm-summary" nil nil nil)
|
|
2572
|
|
2573 (autoload (quote vm-su-byte-count) "vm-summary" nil nil nil)
|
|
2574
|
|
2575 (autoload (quote vm-su-weekday) "vm-summary" nil nil nil)
|
|
2576
|
|
2577 (autoload (quote vm-su-monthday) "vm-summary" nil nil nil)
|
|
2578
|
|
2579 (autoload (quote vm-su-month) "vm-summary" nil nil nil)
|
|
2580
|
|
2581 (autoload (quote vm-su-month-number) "vm-summary" nil nil nil)
|
|
2582
|
|
2583 (autoload (quote vm-su-year) "vm-summary" nil nil nil)
|
|
2584
|
|
2585 (autoload (quote vm-su-hour-short) "vm-summary" nil nil nil)
|
|
2586
|
|
2587 (autoload (quote vm-su-hour) "vm-summary" nil nil nil)
|
|
2588
|
|
2589 (autoload (quote vm-su-zone) "vm-summary" nil nil nil)
|
|
2590
|
|
2591 (autoload (quote vm-su-mark) "vm-summary" nil nil nil)
|
|
2592
|
|
2593 (autoload (quote vm-grok-From_-date) "vm-summary" nil nil nil)
|
|
2594
|
|
2595 (autoload (quote vm-parse-date) "vm-summary" nil nil nil)
|
|
2596
|
|
2597 (autoload (quote vm-su-do-date) "vm-summary" nil nil nil)
|
|
2598
|
|
2599 (autoload (quote vm-su-do-month) "vm-summary" nil nil nil)
|
|
2600
|
|
2601 (autoload (quote vm-run-user-summary-function) "vm-summary" nil nil nil)
|
|
2602
|
|
2603 (autoload (quote vm-su-full-name) "vm-summary" nil nil nil)
|
|
2604
|
|
2605 (autoload (quote vm-su-interesting-full-name) "vm-summary" nil nil nil)
|
|
2606
|
|
2607 (autoload (quote vm-su-from) "vm-summary" nil nil nil)
|
|
2608
|
|
2609 (autoload (quote vm-su-interesting-from) "vm-summary" nil nil nil)
|
|
2610
|
|
2611 (autoload (quote vm-grok-From_-author) "vm-summary" nil nil nil)
|
|
2612
|
|
2613 (autoload (quote vm-su-do-author) "vm-summary" nil nil nil)
|
|
2614
|
|
2615 (autoload (quote vm-default-chop-full-name) "vm-summary" nil nil nil)
|
|
2616
|
|
2617 (autoload (quote vm-choose-chop-full-name-function) "vm-summary" nil nil nil)
|
|
2618
|
|
2619 (autoload (quote vm-su-do-recipients) "vm-summary" nil nil nil)
|
|
2620
|
|
2621 (autoload (quote vm-su-to) "vm-summary" nil nil nil)
|
|
2622
|
|
2623 (autoload (quote vm-su-to-names) "vm-summary" nil nil nil)
|
|
2624
|
|
2625 (autoload (quote vm-su-message-id) "vm-summary" nil nil nil)
|
|
2626
|
|
2627 (autoload (quote vm-su-line-count) "vm-summary" nil nil nil)
|
|
2628
|
|
2629 (autoload (quote vm-su-subject) "vm-summary" nil nil nil)
|
|
2630
|
|
2631 (autoload (quote vm-su-summary) "vm-summary" nil nil nil)
|
|
2632
|
|
2633 (autoload (quote vm-fix-my-summary!!!) "vm-summary" nil t nil)
|
|
2634
|
|
2635 (autoload (quote vm-su-thread-indent) "vm-summary" nil nil nil)
|
|
2636
|
|
2637 (autoload (quote vm-su-labels) "vm-summary" nil nil nil)
|
|
2638
|
|
2639 (autoload (quote vm-toggle-threads-display) "vm-thread" "Toggle the threads display on and off.
|
|
2640 When the threads display is on, the folder will be sorted by
|
|
2641 thread and thread indentation (via the %I summary format specifier)
|
|
2642 will be visible." t nil)
|
|
2643
|
|
2644 (autoload (quote vm-build-threads) "vm-thread" nil nil nil)
|
|
2645
|
|
2646 (autoload (quote vm-thread-mark-for-summary-update) "vm-thread" nil nil nil)
|
|
2647
|
|
2648 (autoload (quote vm-thread-list) "vm-thread" nil nil nil)
|
|
2649
|
|
2650 (autoload (quote vm-unthread-message) "vm-thread" nil nil nil)
|
|
2651
|
114
|
2652 (autoload (quote vm-th-references) "vm-thread" nil nil nil)
|
|
2653
|
0
|
2654 (autoload (quote vm-th-parent) "vm-thread" nil nil nil)
|
|
2655
|
|
2656 (autoload (quote vm-th-thread-indentation) "vm-thread" nil nil nil)
|
|
2657
|
|
2658 (autoload (quote vm-th-thread-list) "vm-thread" nil nil nil)
|
|
2659
|
|
2660 (autoload (quote vm-toolbar-helper-command) "vm-toolbar" nil t nil)
|
|
2661
|
|
2662 (autoload (quote vm-toolbar-any-messages-p) "vm-toolbar" nil nil nil)
|
|
2663
|
|
2664 (autoload (quote vm-toolbar-delete/undelete-message) "vm-toolbar" nil t nil)
|
|
2665
|
|
2666 (autoload (quote vm-toolbar-can-autofile-p) "vm-toolbar" nil t nil)
|
|
2667
|
|
2668 (autoload (quote vm-toolbar-autofile-message) "vm-toolbar" nil t nil)
|
|
2669
|
|
2670 (autoload (quote vm-toolbar-can-recover-p) "vm-toolbar" nil nil nil)
|
|
2671
|
98
|
2672 (autoload (quote vm-toolbar-can-decode-mime-p) "vm-toolbar" nil nil nil)
|
|
2673
|
|
2674 (autoload (quote vm-toolbar-can-quit-p) "vm-toolbar" nil nil nil)
|
|
2675
|
110
|
2676 (autoload (quote vm-toolbar-mail-waiting-p) "vm-toolbar" nil nil nil)
|
|
2677
|
0
|
2678 (autoload (quote vm-toolbar-update-toolbar) "vm-toolbar" nil nil nil)
|
|
2679
|
|
2680 (autoload (quote vm-toolbar-install-toolbar) "vm-toolbar" nil nil nil)
|
|
2681
|
|
2682 (autoload (quote vm-toolbar-make-toolbar-spec) "vm-toolbar" nil nil nil)
|
|
2683
|
|
2684 (autoload (quote vm-toolbar-initialize) "vm-toolbar" nil nil nil)
|
|
2685
|
|
2686 (autoload (quote vm-set-buffer-modified-p) "vm-undo" nil nil nil)
|
|
2687
|
|
2688 (autoload (quote vm-undo-boundary) "vm-undo" nil nil nil)
|
|
2689
|
|
2690 (autoload (quote vm-clear-expunge-invalidated-undos) "vm-undo" nil nil nil)
|
|
2691
|
|
2692 (autoload (quote vm-clear-virtual-quit-invalidated-undos) "vm-undo" nil nil nil)
|
|
2693
|
|
2694 (autoload (quote vm-clear-modification-flag-undos) "vm-undo" nil nil nil)
|
|
2695
|
|
2696 (autoload (quote vm-squeeze-consecutive-undo-boundaries) "vm-undo" nil nil nil)
|
|
2697
|
|
2698 (autoload (quote vm-undo-record) "vm-undo" nil nil nil)
|
|
2699
|
|
2700 (autoload (quote vm-undo-describe) "vm-undo" nil nil nil)
|
|
2701
|
|
2702 (autoload (quote vm-undo-set-message-pointer) "vm-undo" nil nil nil)
|
|
2703
|
|
2704 (autoload (quote vm-undo) "vm-undo" "Undo last change to message attributes in the current folder.
|
|
2705 Consecutive invocations of this command cause sequentially earlier
|
|
2706 changes to be undone. After an intervening command between undos,
|
|
2707 the undos themselves become undoable." t nil)
|
|
2708
|
|
2709 (autoload (quote vm-set-message-attributes) "vm-undo" "Set message attributes.
|
|
2710 Use this command to change attributes like `deleted' or
|
|
2711 `replied'. Interactively you will be prompted for the attributes
|
|
2712 to be changed, and only the attributes you enter will be altered.
|
|
2713 You can use completion to expand the attribute names. The names
|
|
2714 should be entered as a space separated list.
|
|
2715
|
|
2716 A numeric prefix argument COUNT causes the current message and
|
|
2717 the next COUNT-1 message to have their attributes altered. A
|
|
2718 negative COUNT arg causes the current message and the previous
|
|
2719 COUNT-1 messages to be altered. COUNT defaults to one." t nil)
|
|
2720
|
|
2721 (autoload (quote vm-add-message-labels) "vm-undo" "Attach some labels to a message.
|
|
2722 These are arbitrary user-defined labels, not to be confused with
|
|
2723 message attributes like `new' and `deleted'. Interactively you
|
|
2724 will be prompted for the labels to be added. You can use
|
|
2725 completion to expand the label names, with the completion list
|
|
2726 being all the labels that have ever been used in this folder.
|
|
2727 The names should be entered as a space separated list. Label
|
|
2728 names are compared case-insensitively.
|
|
2729
|
|
2730 A numeric prefix argument COUNT causes the current message and
|
|
2731 the next COUNT-1 message to have the labels added. A
|
|
2732 negative COUNT arg causes the current message and the previous
|
|
2733 COUNT-1 messages to be altered. COUNT defaults to one." t nil)
|
|
2734
|
|
2735 (autoload (quote vm-delete-message-labels) "vm-undo" "Delete some labels from a message.
|
|
2736 These are arbitrary user-defined labels, not to be confused with
|
|
2737 message attributes like `new' and `deleted'. Interactively you
|
|
2738 will be prompted for the labels to be deleted. You can use
|
|
2739 completion to expand the label names, with the completion list
|
|
2740 being all the labels that have ever been used in this folder.
|
|
2741 The names should be entered as a space separated list. Label
|
|
2742 names are compared case-insensitively.
|
|
2743
|
|
2744 A numeric prefix argument COUNT causes the current message and
|
|
2745 the next COUNT-1 message to have the labels deleted. A
|
|
2746 negative COUNT arg causes the current message and the previous
|
|
2747 COUNT-1 messages to be altered. COUNT defaults to one." t nil)
|
|
2748
|
|
2749 (autoload (quote vm-add-or-delete-message-labels) "vm-undo" nil nil nil)
|
|
2750
|
|
2751 (autoload (quote vm-set-xxxx-flag) "vm-undo" nil nil nil)
|
|
2752
|
|
2753 (autoload (quote vm-set-labels) "vm-undo" nil nil nil)
|
|
2754
|
|
2755 (autoload (quote vm-set-new-flag) "vm-undo" nil nil nil)
|
|
2756
|
|
2757 (autoload (quote vm-set-unread-flag) "vm-undo" nil nil nil)
|
|
2758
|
|
2759 (autoload (quote vm-set-deleted-flag) "vm-undo" nil nil nil)
|
|
2760
|
|
2761 (autoload (quote vm-set-filed-flag) "vm-undo" nil nil nil)
|
|
2762
|
|
2763 (autoload (quote vm-set-replied-flag) "vm-undo" nil nil nil)
|
|
2764
|
|
2765 (autoload (quote vm-set-written-flag) "vm-undo" nil nil nil)
|
|
2766
|
|
2767 (autoload (quote vm-set-forwarded-flag) "vm-undo" nil nil nil)
|
|
2768
|
|
2769 (autoload (quote vm-set-redistributed-flag) "vm-undo" nil nil nil)
|
|
2770
|
|
2771 (autoload (quote vm-set-new-flag-of) "vm-undo" nil nil nil)
|
|
2772
|
|
2773 (autoload (quote vm-set-unread-flag-of) "vm-undo" nil nil nil)
|
|
2774
|
|
2775 (autoload (quote vm-set-deleted-flag-of) "vm-undo" nil nil nil)
|
|
2776
|
|
2777 (autoload (quote vm-set-filed-flag-of) "vm-undo" nil nil nil)
|
|
2778
|
|
2779 (autoload (quote vm-set-replied-flag-of) "vm-undo" nil nil nil)
|
|
2780
|
|
2781 (autoload (quote vm-set-written-flag-of) "vm-undo" nil nil nil)
|
|
2782
|
|
2783 (autoload (quote vm-set-forwarded-flag-of) "vm-undo" nil nil nil)
|
|
2784
|
|
2785 (autoload (quote vm-set-redistributed-flag-of) "vm-undo" nil nil nil)
|
|
2786
|
|
2787 (autoload (quote vm-set-deleted-flag-in-vector) "vm-undo" nil nil nil)
|
|
2788
|
|
2789 (autoload (quote vm-set-new-flag-in-vector) "vm-undo" nil nil nil)
|
|
2790
|
110
|
2791 (autoload (quote vm-user-composition-folder-buffer) "vm-user" "Returns the folder buffer associated with the current buffer.
|
|
2792 The current buffer must be a composition buffer created by VM for
|
|
2793 a reply, resend or forward.
|
|
2794
|
|
2795 Nil is returned if the current buffer is not assocaited with any
|
|
2796 VM folder.
|
|
2797
|
|
2798 Note that the buffer returned might be a virtual folder buffer,
|
|
2799 which might have several underlying real folders associated with
|
|
2800 it. To get the list of real folder buffers associated with a
|
|
2801 composition buffer, use vm-user-composition-real-folder-buffers
|
|
2802 instead." nil nil)
|
|
2803
|
|
2804 (autoload (quote vm-user-composition-real-folder-buffers) "vm-user" "Returns a list of the real folder buffers associated with the current
|
|
2805 buffer. The current buffer must be a composition buffer created
|
|
2806 by VM for a reply, resend or forward." nil nil)
|
|
2807
|
0
|
2808 (autoload (quote vm-spool-files) "vm-vars" nil nil nil)
|
|
2809
|
126
|
2810 (autoload (quote vm-xemacs-p) "vm-vars" nil nil nil)
|
|
2811
|
|
2812 (autoload (quote vm-xemacs-mule-p) "vm-vars" nil nil nil)
|
|
2813
|
|
2814 (autoload (quote vm-fsfemacs-19-p) "vm-vars" nil nil nil)
|
|
2815
|
120
|
2816 (autoload (quote vm-note-emacs-version) "vm-vars" nil nil nil)
|
|
2817
|
0
|
2818 (autoload (quote vm-version) "vm-version" "Returns the value of the variable vm-version." nil nil)
|
|
2819
|
|
2820 (autoload (quote vm-build-virtual-message-list) "vm-virtual" nil nil nil)
|
|
2821
|
|
2822 (autoload (quote vm-create-virtual-folder) "vm-virtual" "Create a new virtual folder from messages in the current folder.
|
|
2823 The messages will be chosen by applying the selector you specify,
|
|
2824 which is normally read from the minibuffer.
|
|
2825
|
|
2826 Prefix arg means the new virtual folder should be visited read only." t nil)
|
|
2827
|
|
2828 (autoload (quote vm-apply-virtual-folder) "vm-virtual" "Apply the selectors of a named virtual folder to the current folder
|
|
2829 and create a virtual folder containing the selected messages.
|
|
2830
|
|
2831 Prefix arg means the new virtual folder should be visited read only." t nil)
|
|
2832
|
|
2833 (autoload (quote vm-toggle-virtual-mirror) "vm-virtual" nil t nil)
|
|
2834
|
|
2835 (autoload (quote vm-virtual-help) "vm-virtual" nil t nil)
|
|
2836
|
|
2837 (autoload (quote vm-vs-or) "vm-virtual" nil nil nil)
|
|
2838
|
|
2839 (autoload (quote vm-vs-and) "vm-virtual" nil nil nil)
|
|
2840
|
|
2841 (autoload (quote vm-vs-not) "vm-virtual" nil nil nil)
|
|
2842
|
|
2843 (autoload (quote vm-vs-any) "vm-virtual" nil nil nil)
|
|
2844
|
|
2845 (autoload (quote vm-vs-author) "vm-virtual" nil nil nil)
|
|
2846
|
|
2847 (autoload (quote vm-vs-recipient) "vm-virtual" nil nil nil)
|
|
2848
|
|
2849 (autoload (quote vm-vs-subject) "vm-virtual" nil nil nil)
|
|
2850
|
|
2851 (autoload (quote vm-vs-sent-before) "vm-virtual" nil nil nil)
|
|
2852
|
|
2853 (autoload (quote vm-vs-sent-after) "vm-virtual" nil nil nil)
|
|
2854
|
|
2855 (autoload (quote vm-vs-header) "vm-virtual" nil nil nil)
|
|
2856
|
|
2857 (autoload (quote vm-vs-label) "vm-virtual" nil nil nil)
|
|
2858
|
|
2859 (autoload (quote vm-vs-text) "vm-virtual" nil nil nil)
|
|
2860
|
|
2861 (autoload (quote vm-vs-more-chars-than) "vm-virtual" nil nil nil)
|
|
2862
|
|
2863 (autoload (quote vm-vs-less-chars-than) "vm-virtual" nil nil nil)
|
|
2864
|
|
2865 (autoload (quote vm-vs-more-lines-than) "vm-virtual" nil nil nil)
|
|
2866
|
|
2867 (autoload (quote vm-vs-less-lines-than) "vm-virtual" nil nil nil)
|
|
2868
|
|
2869 (autoload (quote vm-vs-new) "vm-virtual" nil nil nil)
|
|
2870
|
|
2871 (autoload (quote vm-vs-unread) "vm-virtual" nil nil nil)
|
|
2872
|
|
2873 (autoload (quote vm-vs-read) "vm-virtual" nil nil nil)
|
|
2874
|
|
2875 (autoload (quote vm-vs-deleted) "vm-virtual" nil nil nil)
|
|
2876
|
|
2877 (autoload (quote vm-vs-replied) "vm-virtual" nil nil nil)
|
|
2878
|
|
2879 (autoload (quote vm-vs-forwarded) "vm-virtual" nil nil nil)
|
|
2880
|
|
2881 (autoload (quote vm-vs-filed) "vm-virtual" nil nil nil)
|
|
2882
|
|
2883 (autoload (quote vm-vs-written) "vm-virtual" nil nil nil)
|
|
2884
|
|
2885 (autoload (quote vm-vs-marked) "vm-virtual" nil nil nil)
|
|
2886
|
|
2887 (autoload (quote vm-vs-edited) "vm-virtual" nil nil nil)
|
|
2888
|
|
2889 (autoload (quote vm-read-virtual-selector) "vm-virtual" nil nil nil)
|
|
2890
|
|
2891 (autoload (quote vm-virtual-quit) "vm-virtual" nil nil nil)
|
|
2892
|
|
2893 (autoload (quote vm-virtual-save-folder) "vm-virtual" nil nil nil)
|
|
2894
|
|
2895 (autoload (quote vm-virtual-get-new-mail) "vm-virtual" nil nil nil)
|
|
2896
|
|
2897 (autoload (quote vm-make-virtual-copy) "vm-virtual" nil nil nil)
|
|
2898
|
|
2899 (autoload (quote vm-display) "vm-window" nil nil nil)
|
|
2900
|
|
2901 (autoload (quote vm-display-buffer) "vm-window" nil nil nil)
|
|
2902
|
|
2903 (autoload (quote vm-undisplay-buffer) "vm-window" nil nil nil)
|
|
2904
|
|
2905 (autoload (quote vm-load-window-configurations) "vm-window" nil nil nil)
|
|
2906
|
|
2907 (autoload (quote vm-store-window-configurations) "vm-window" nil nil nil)
|
|
2908
|
|
2909 (autoload (quote vm-set-window-configuration) "vm-window" nil nil nil)
|
|
2910
|
70
|
2911 (autoload (quote vm-record-current-window-configuration) "vm-window" nil nil nil)
|
|
2912
|
0
|
2913 (autoload (quote vm-save-window-configuration) "vm-window" "Name and save the current window configuration.
|
|
2914 With this command you associate the current window setup with an
|
|
2915 action. Each time you perform this action VM will duplicate this
|
|
2916 window setup.
|
|
2917
|
|
2918 Nearly every VM command can have a window configuration
|
|
2919 associated with it. VM also allows some category configurations,
|
|
2920 `startup', `reading-message', `composing-message', `editing-message',
|
|
2921 `marking-message' and `searching-message' for the commands that
|
|
2922 do these things. There is also a `default' configuration that VM
|
|
2923 will use if no other configuration is applicable. Command
|
|
2924 specific configurations are searched for first, then the category
|
|
2925 configurations and then the default configuration. The first
|
|
2926 configuration found is the one that is applied.
|
|
2927
|
|
2928 The value of vm-mutable-windows must be non-nil for VM to use
|
70
|
2929 window configurations.
|
|
2930
|
|
2931 If vm-mutable-frames is non-nil and Emacs is running under X
|
|
2932 windows, then VM will use all existing frames. Otherwise VM will
|
|
2933 restrict its changes to the frame in which it was started." t nil)
|
0
|
2934
|
|
2935 (autoload (quote vm-buffer-to-label) "vm-window" nil nil nil)
|
|
2936
|
|
2937 (autoload (quote vm-delete-window-configuration) "vm-window" "Delete the configuration saved for a particular action.
|
|
2938 This action will no longer have an associated window configuration.
|
|
2939 The action will be read from the minibuffer." t nil)
|
|
2940
|
|
2941 (autoload (quote vm-apply-window-configuration) "vm-window" "Change the current window configuration to be one
|
|
2942 associated with a particular action. The action will be read
|
|
2943 from the minibuffer." t nil)
|
|
2944
|
|
2945 (autoload (quote vm-window-help) "vm-window" nil t nil)
|
|
2946
|
|
2947 (autoload (quote vm-iconify-frame) "vm-window" "Iconify the current frame.
|
|
2948 Run the hooks in vm-iconify-frame-hook before doing so." t nil)
|
|
2949
|
|
2950 (autoload (quote vm-window-loop) "vm-window" nil nil nil)
|
|
2951
|
|
2952 (autoload (quote vm-frame-loop) "vm-window" nil nil nil)
|
|
2953
|
70
|
2954 (autoload (quote vm-delete-windows-or-frames-on) "vm-window" nil nil nil)
|
0
|
2955
|
|
2956 (autoload (quote vm-replace-buffer-in-windows) "vm-window" nil nil nil)
|
|
2957
|
|
2958 (autoload (quote vm-bury-buffer) "vm-window" nil nil nil)
|
|
2959
|
|
2960 (autoload (quote vm-unbury-buffer) "vm-window" nil nil nil)
|
|
2961
|
|
2962 (autoload (quote vm-get-buffer-window) "vm-window" nil nil nil)
|
|
2963
|
|
2964 (autoload (quote vm-get-visible-buffer-window) "vm-window" nil nil nil)
|
|
2965
|
|
2966 (autoload (quote vm-set-hooks-for-frame-deletion) "vm-window" nil nil nil)
|
|
2967
|
98
|
2968 (autoload (quote vm-created-this-frame-p) "vm-window" nil nil nil)
|
|
2969
|
0
|
2970 (autoload (quote vm-delete-buffer-frame) "vm-window" nil nil nil)
|
|
2971
|
98
|
2972 (autoload (quote vm-register-frame) "vm-window" nil nil nil)
|
|
2973
|
0
|
2974 (autoload (quote vm-goto-new-frame) "vm-window" nil nil nil)
|
|
2975
|
98
|
2976 (autoload (quote vm-goto-new-summary-frame-maybe) "vm-window" nil nil nil)
|
|
2977
|
|
2978 (autoload (quote vm-goto-new-folder-frame-maybe) "vm-window" nil nil nil)
|
|
2979
|
0
|
2980 (autoload (quote vm-warp-mouse-to-frame-maybe) "vm-window" nil nil nil)
|
|
2981
|
|
2982 (autoload (quote vm-iconify-frame-xxx) "vm-window" nil nil nil)
|