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