home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_xemacs.idb / usr / freeware / lib / xemacs-20.4 / lisp / vm / vm-autoload.el.z / vm-autoload.el
Encoding:
Text File  |  1998-05-21  |  125.9 KB  |  3,193 lines

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