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