Mercurial > hg > xemacs-beta
comparison lisp/vm/vm-autoload.el @ 20:859a2309aef8 r19-15b93
Import from CVS: tag r19-15b93
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:50:05 +0200 |
parents | d95e72db5c07 |
children | e04119814345 |
comparison
equal
deleted
inserted
replaced
19:ac1f612d5250 | 20:859a2309aef8 |
---|---|
4 | 4 |
5 The message will be physically deleted from the current folder the next | 5 The message will be physically deleted from the current folder the next |
6 time the current folder is expunged. | 6 time the current folder is expunged. |
7 | 7 |
8 With a prefix argument COUNT, the current message and the next | 8 With a prefix argument COUNT, the current message and the next |
9 COUNT - 1 messages are deleted. A negative argument means the | 9 COUNT - 1 messages are deleted. A negative argument means |
10 the current message and the previous |COUNT| - 1 messages are | 10 the current message and the previous |COUNT| - 1 messages are |
11 deleted. | 11 deleted. |
12 | 12 |
13 When invoked on marked messages (via vm-next-command-uses-marks), | 13 When invoked on marked messages (via vm-next-command-uses-marks), |
14 only marked messages are deleted, other messages are ignored." t nil) | 14 only marked messages are deleted, other messages are ignored." t nil) |
16 (autoload (quote vm-delete-message-backward) "vm-delete" "Like vm-delete-message, except the deletion direction is reversed." t nil) | 16 (autoload (quote vm-delete-message-backward) "vm-delete" "Like vm-delete-message, except the deletion direction is reversed." t nil) |
17 | 17 |
18 (autoload (quote vm-undelete-message) "vm-delete" "Remove the `deleted' attribute from the current message. | 18 (autoload (quote vm-undelete-message) "vm-delete" "Remove the `deleted' attribute from the current message. |
19 | 19 |
20 With a prefix argument COUNT, the current message and the next | 20 With a prefix argument COUNT, the current message and the next |
21 COUNT - 1 messages are undeleted. A negative argument means the | 21 COUNT - 1 messages are undeleted. A negative argument means |
22 the current message and the previous |COUNT| - 1 messages are | 22 the current message and the previous |COUNT| - 1 messages are |
23 deleted. | 23 deleted. |
24 | 24 |
25 When invoked on marked messages (via vm-next-command-uses-marks), | 25 When invoked on marked messages (via vm-next-command-uses-marks), |
26 only marked messages are undeleted, other messages are ignored." t nil) | 26 only marked messages are undeleted, other messages are ignored." t nil) |
27 | 27 |
28 (autoload (quote vm-kill-subject) "vm-delete" "Delete all messages with the same subject as the current message. | 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 | 29 Message subjects are compared after ignoring parts matched by |
30 the variables vm-subject-ignored-prefix and vm-subject-ignored-suffix." t nil) | 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) | |
31 | 37 |
32 (autoload (quote vm-expunge-folder) "vm-delete" "Expunge messages with the `deleted' attribute. | 38 (autoload (quote vm-expunge-folder) "vm-delete" "Expunge messages with the `deleted' attribute. |
33 For normal folders this means that the deleted messages are | 39 For normal folders this means that the deleted messages are |
34 removed from the message list and the message contents are | 40 removed from the message list and the message contents are |
35 removed from the folder buffer. | 41 removed from the folder buffer. |
54 DISCARD-REGEXP should be a regexp that matches headers to be discarded. | 60 DISCARD-REGEXP should be a regexp that matches headers to be discarded. |
55 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers | 61 KEEP-LIST and DISCARD-REGEXP are used to order and trim the headers |
56 to be forwarded. See the docs for vm-reorder-message-headers | 62 to be forwarded. See the docs for vm-reorder-message-headers |
57 to find out how KEEP-LIST and DISCARD-REGEXP are used." nil nil) | 63 to find out how KEEP-LIST and DISCARD-REGEXP are used." nil nil) |
58 | 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 Returns the multipart boundary parameter (string) that should be used | |
78 in the Content-Type header." nil nil) | |
79 | |
80 (autoload (quote vm-mime-burst-message) "vm-digest" "Burst messages from the digest message M. | |
81 M should be a message struct for a real message. | |
82 MIME encoding is expected. The message content type | |
83 must be either message/* or multipart/digest." nil nil) | |
84 | |
85 (autoload (quote vm-mime-burst-layout) "vm-digest" nil nil nil) | |
86 | |
59 (autoload (quote vm-rfc934-char-stuff-region) "vm-digest" "Quote RFC 934 message separators between START and END. | 87 (autoload (quote vm-rfc934-char-stuff-region) "vm-digest" "Quote RFC 934 message separators between START and END. |
60 START and END are buffer positions in the current buffer. | 88 START and END are buffer positions in the current buffer. |
61 Lines beginning with `-' in the region have `- ' prepended to them." nil nil) | 89 Lines beginning with `-' in the region have `- ' prepended to them." nil nil) |
62 | 90 |
63 (autoload (quote vm-rfc934-char-unstuff-region) "vm-digest" "Unquote lines in between START and END as per RFC 934. | 91 (autoload (quote vm-rfc934-char-unstuff-region) "vm-digest" "Unquote lines in between START and END as per RFC 934. |
124 | 152 |
125 (autoload (quote vm-burst-rfc934-digest) "vm-digest" "Burst an RFC 934 style digest" t nil) | 153 (autoload (quote vm-burst-rfc934-digest) "vm-digest" "Burst an RFC 934 style digest" t nil) |
126 | 154 |
127 (autoload (quote vm-burst-rfc1153-digest) "vm-digest" "Burst an RFC 1153 style digest" t nil) | 155 (autoload (quote vm-burst-rfc1153-digest) "vm-digest" "Burst an RFC 1153 style digest" t nil) |
128 | 156 |
157 (autoload (quote vm-burst-mime-digest) "vm-digest" "Burst a MIME digest" t nil) | |
158 | |
129 (autoload (quote vm-guess-digest-type) "vm-digest" "Guess the digest type of the message M. | 159 (autoload (quote vm-guess-digest-type) "vm-digest" "Guess the digest type of the message M. |
130 M should be the message struct of a real message. | 160 M should be the message struct of a real message. |
131 Returns either \"rfc934\" or \"rfc1153\"." nil nil) | 161 Returns either \"rfc934\", \"rfc1153\" or \"mime\"." nil nil) |
132 | 162 |
133 (autoload (quote vm-easy-menu-define) "vm-easymenu" "Define a menu bar submenu in maps MAPS, according to MENU. | 163 (autoload (quote vm-easy-menu-define) "vm-easymenu" "Define a menu bar submenu in maps MAPS, according to MENU. |
134 The menu keymap is stored in symbol SYMBOL, both as its value | 164 The menu keymap is stored in symbol SYMBOL, both as its value |
135 and as its function definition. DOC is used as the doc string for SYMBOL. | 165 and as its function definition. DOC is used as the doc string for SYMBOL. |
136 | 166 |
293 Also mark the current buffer as needing a display update. | 323 Also mark the current buffer as needing a display update. |
294 | 324 |
295 START-POINT should be a cons in vm-message-list or just t. | 325 START-POINT should be a cons in vm-message-list or just t. |
296 (t means start from the beginning of vm-message-list.) | 326 (t means start from the beginning of vm-message-list.) |
297 If START-POINT is closer to the head of vm-message-list than | 327 If START-POINT is closer to the head of vm-message-list than |
298 vm-numbering-redo-start-point or is equal to t, then | 328 vm-summary-redo-start-point or is equal to t, then |
299 vm-numbering-redo-start-point is set to match it." nil nil) | 329 vm-summary-redo-start-point is set to match it." nil nil) |
300 | 330 |
301 (autoload (quote vm-mark-for-summary-update) "vm-folder" "Mark message M for a summary update. | 331 (autoload (quote vm-mark-for-summary-update) "vm-folder" "Mark message M for a summary update. |
302 Also mark M's buffer as needing a display update. Any virtual | 332 Also mark M's buffer as needing a display update. Any virtual |
303 messages of M and their buffers are similarly marked for update. | 333 messages of M and their buffers are similarly marked for update. |
304 If M is a virtual message and virtual mirroring is in effect for | 334 If M is a virtual message and virtual mirroring is in effect for |
314 (autoload (quote vm-force-mode-line-update) "vm-folder" "Force a mode line update in all frames." nil nil) | 344 (autoload (quote vm-force-mode-line-update) "vm-folder" "Force a mode line update in all frames." nil nil) |
315 | 345 |
316 (autoload (quote vm-do-needed-mode-line-update) "vm-folder" "Do a modeline update for the current folder buffer. | 346 (autoload (quote vm-do-needed-mode-line-update) "vm-folder" "Do a modeline update for the current folder buffer. |
317 This means setting up all the various vm-ml attribute variables | 347 This means setting up all the various vm-ml attribute variables |
318 in the folder buffer and copying necessary variables to the | 348 in the folder buffer and copying necessary variables to the |
319 folder buffer's summary buffer, and then forcing Emacs to update | 349 folder buffer's summary and presentation buffers, and then |
320 all modelines. | 350 forcing Emacs to update all modelines. |
321 | 351 |
322 Also if a virtual folder being updated has no messages, | 352 If a virtual folder being updated has no messages, then |
323 erase-buffer is called on its buffer." nil nil) | 353 erase-buffer is called on its buffer. |
354 | |
355 If any type of folder is empty, erase-buffer is called | |
356 on its presentation buffer, if any." nil nil) | |
324 | 357 |
325 (autoload (quote vm-update-summary-and-mode-line) "vm-folder" "Update summary and mode line for all VM folder and summary buffers. | 358 (autoload (quote vm-update-summary-and-mode-line) "vm-folder" "Update summary and mode line for all VM folder and summary buffers. |
326 Really this updates all the visible status indicators. | 359 Really this updates all the visible status indicators. |
327 | 360 |
328 Message lists are renumbered. | 361 Message lists are renumbered. |
383 | 416 |
384 (autoload (quote vm-get-folder-type) "vm-folder" "Return a symbol indicating the folder type of the current buffer. | 417 (autoload (quote vm-get-folder-type) "vm-folder" "Return a symbol indicating the folder type of the current buffer. |
385 This function works by examining the beginning of a folder. | 418 This function works by examining the beginning of a folder. |
386 If optional arg FILE is present the type of FILE is returned instead. | 419 If optional arg FILE is present the type of FILE is returned instead. |
387 If optional second and third arg START and END are provided, | 420 If optional second and third arg START and END are provided, |
388 vm-get-folder-type will examine the the text between those buffer | 421 vm-get-folder-type will examine the text between those buffer |
389 positions. START and END default to 1 and (buffer-size) + 1. | 422 positions. START and END default to 1 and (buffer-size) + 1. |
390 | 423 |
391 Returns | 424 Returns |
392 nil if folder has no type (empty) | 425 nil if folder has no type (empty) |
393 unknown if the type is not known to VM | 426 unknown if the type is not known to VM |
512 | 545 |
513 (autoload (quote vm-gobble-summary) "vm-folder" nil nil nil) | 546 (autoload (quote vm-gobble-summary) "vm-folder" nil nil nil) |
514 | 547 |
515 (autoload (quote vm-stuff-attributes) "vm-folder" nil nil nil) | 548 (autoload (quote vm-stuff-attributes) "vm-folder" nil nil nil) |
516 | 549 |
550 (autoload (quote vm-stuff-folder-attributes) "vm-folder" nil nil nil) | |
551 | |
517 (autoload (quote vm-stuff-babyl-attributes) "vm-folder" nil nil nil) | 552 (autoload (quote vm-stuff-babyl-attributes) "vm-folder" nil nil nil) |
518 | 553 |
519 (autoload (quote vm-babyl-attributes-string) "vm-folder" nil nil nil) | 554 (autoload (quote vm-babyl-attributes-string) "vm-folder" nil nil nil) |
520 | 555 |
521 (autoload (quote vm-babyl-labels-string) "vm-folder" nil nil nil) | 556 (autoload (quote vm-babyl-labels-string) "vm-folder" nil nil nil) |
643 mmdf | 678 mmdf |
644 babyl | 679 babyl |
645 | 680 |
646 Interactively TYPE will be read from the minibuffer." t nil) | 681 Interactively TYPE will be read from the minibuffer." t nil) |
647 | 682 |
683 (autoload (quote vm-garbage-collect-folder) "vm-folder" nil nil nil) | |
684 | |
685 (autoload (quote vm-garbage-collect-message) "vm-folder" nil nil nil) | |
686 | |
648 (autoload (quote vm-show-copying-restrictions) "vm-license" nil t nil) | 687 (autoload (quote vm-show-copying-restrictions) "vm-license" nil t nil) |
649 | 688 |
650 (autoload (quote vm-show-no-warranty) "vm-license" "Display \"NO WARRANTY\" section of the GNU General Public License." t nil) | 689 (autoload (quote vm-show-no-warranty) "vm-license" "Display \"NO WARRANTY\" section of the GNU General Public License." t nil) |
651 | 690 |
652 (autoload (quote vm-clear-all-marks) "vm-mark" "Removes all message marks in the current folder." t nil) | 691 (autoload (quote vm-clear-all-marks) "vm-mark" "Removes all message marks in the current folder." t nil) |
661 (autoload (quote vm-unmark-message) "vm-mark" "Remove the mark from the current message. | 700 (autoload (quote vm-unmark-message) "vm-mark" "Remove the mark from the current message. |
662 Numeric prefix argument N means unmark the current message and the next | 701 Numeric prefix argument N means unmark the current message and the next |
663 N-1 messages. A negative N means unmark the current message and the | 702 N-1 messages. A negative N means unmark the current message and the |
664 previous N-1 messages." t nil) | 703 previous N-1 messages." t nil) |
665 | 704 |
705 (autoload (quote vm-mark-summary-region) "vm-mark" "Mark all messages with summary lines contained in the region." t nil) | |
706 | |
707 (autoload (quote vm-unmark-summary-region) "vm-mark" "Remove marks from messages with summary lines contained in the region." t nil) | |
708 | |
709 (autoload (quote vm-mark-or-unmark-summary-region) "vm-mark" nil nil nil) | |
710 | |
666 (autoload (quote vm-mark-or-unmark-messages-with-selector) "vm-mark" nil nil nil) | 711 (autoload (quote vm-mark-or-unmark-messages-with-selector) "vm-mark" nil nil nil) |
667 | 712 |
668 (autoload (quote vm-mark-matching-messages) "vm-mark" "Mark messages matching some criterion. | 713 (autoload (quote vm-mark-matching-messages) "vm-mark" "Mark messages matching some criterion. |
669 You can use any of the virtual folder selectors, except for the | 714 You can use any of the virtual folder selectors, except for the |
670 `and', `or' and `not' selectors. See the documentation for the | 715 `and', `or' and `not' selectors. See the documentation for the |
718 | 763 |
719 (autoload (quote vm-menu-can-get-new-mail-p) "vm-menu" nil nil nil) | 764 (autoload (quote vm-menu-can-get-new-mail-p) "vm-menu" nil nil nil) |
720 | 765 |
721 (autoload (quote vm-menu-can-undo-p) "vm-menu" nil nil nil) | 766 (autoload (quote vm-menu-can-undo-p) "vm-menu" nil nil nil) |
722 | 767 |
768 (autoload (quote vm-menu-can-decode-mime-p) "vm-menu" nil nil nil) | |
769 | |
723 (autoload (quote vm-menu-yank-original) "vm-menu" nil t nil) | 770 (autoload (quote vm-menu-yank-original) "vm-menu" nil t nil) |
724 | 771 |
725 (autoload (quote vm-menu-can-send-mail-p) "vm-menu" nil nil nil) | 772 (autoload (quote vm-menu-can-send-mail-p) "vm-menu" nil nil nil) |
726 | 773 |
727 (autoload (quote vm-menu-create-subject-virtual-folder) "vm-menu" nil t nil) | 774 (autoload (quote vm-menu-create-subject-virtual-folder) "vm-menu" nil t nil) |
739 (autoload (quote vm-menu-popup-mode-menu) "vm-menu" nil t nil) | 786 (autoload (quote vm-menu-popup-mode-menu) "vm-menu" nil t nil) |
740 | 787 |
741 (autoload (quote vm-menu-popup-context-menu) "vm-menu" nil t nil) | 788 (autoload (quote vm-menu-popup-context-menu) "vm-menu" nil t nil) |
742 | 789 |
743 (autoload (quote vm-menu-popup-url-browser-menu) "vm-menu" nil t nil) | 790 (autoload (quote vm-menu-popup-url-browser-menu) "vm-menu" nil t nil) |
791 | |
792 (autoload (quote vm-menu-popup-mime-dispose-menu) "vm-menu" nil t nil) | |
744 | 793 |
745 (autoload (quote vm-menu-popup-fsfemacs-menu) "vm-menu" nil t nil) | 794 (autoload (quote vm-menu-popup-fsfemacs-menu) "vm-menu" nil t nil) |
746 | 795 |
747 (autoload (quote vm-menu-mode-menu) "vm-menu" nil nil nil) | 796 (autoload (quote vm-menu-mode-menu) "vm-menu" nil nil nil) |
748 | 797 |
844 | 893 |
845 (autoload (quote vm-saved-virtual-mirror-data-of) "vm-message" nil nil (quote macro)) | 894 (autoload (quote vm-saved-virtual-mirror-data-of) "vm-message" nil nil (quote macro)) |
846 | 895 |
847 (autoload (quote vm-virtual-summary-of) "vm-message" nil nil (quote macro)) | 896 (autoload (quote vm-virtual-summary-of) "vm-message" nil nil (quote macro)) |
848 | 897 |
898 (autoload (quote vm-mime-layout-of) "vm-message" nil nil (quote macro)) | |
899 | |
900 (autoload (quote vm-mime-encoded-header-flag-of) "vm-message" nil nil (quote macro)) | |
901 | |
849 (autoload (quote vm-attributes-of) "vm-message" nil nil (quote macro)) | 902 (autoload (quote vm-attributes-of) "vm-message" nil nil (quote macro)) |
850 | 903 |
851 (autoload (quote vm-new-flag) "vm-message" nil nil (quote macro)) | 904 (autoload (quote vm-new-flag) "vm-message" nil nil (quote macro)) |
852 | 905 |
853 (autoload (quote vm-unread-flag) "vm-message" nil nil (quote macro)) | 906 (autoload (quote vm-unread-flag) "vm-message" nil nil (quote macro)) |
968 | 1021 |
969 (autoload (quote vm-set-saved-virtual-mirror-data-of) "vm-message" nil nil (quote macro)) | 1022 (autoload (quote vm-set-saved-virtual-mirror-data-of) "vm-message" nil nil (quote macro)) |
970 | 1023 |
971 (autoload (quote vm-set-virtual-summary-of) "vm-message" nil nil (quote macro)) | 1024 (autoload (quote vm-set-virtual-summary-of) "vm-message" nil nil (quote macro)) |
972 | 1025 |
1026 (autoload (quote vm-set-mime-layout-of) "vm-message" nil nil (quote macro)) | |
1027 | |
1028 (autoload (quote vm-set-mime-encoded-header-flag-of) "vm-message" nil nil (quote macro)) | |
1029 | |
973 (autoload (quote vm-set-attributes-of) "vm-message" nil nil (quote macro)) | 1030 (autoload (quote vm-set-attributes-of) "vm-message" nil nil (quote macro)) |
974 | 1031 |
975 (autoload (quote vm-set-edited-flag-of) "vm-message" nil nil nil) | 1032 (autoload (quote vm-set-edited-flag-of) "vm-message" nil nil nil) |
976 | 1033 |
977 (autoload (quote vm-set-cache-of) "vm-message" nil nil (quote macro)) | 1034 (autoload (quote vm-set-cache-of) "vm-message" nil nil (quote macro)) |
1033 (autoload (quote vm-make-message) "vm-message" nil nil nil) | 1090 (autoload (quote vm-make-message) "vm-message" nil nil nil) |
1034 | 1091 |
1035 (autoload (quote vm-find-and-set-text-of) "vm-message" nil nil nil) | 1092 (autoload (quote vm-find-and-set-text-of) "vm-message" nil nil nil) |
1036 | 1093 |
1037 (autoload (quote vm-virtual-message-p) "vm-message" nil nil nil) | 1094 (autoload (quote vm-virtual-message-p) "vm-message" nil nil nil) |
1095 | |
1096 (autoload (quote vm-mime-error) "vm-mime" nil nil nil) | |
1097 | |
1098 (autoload (quote vm-mm-layout-type) "vm-mime" nil nil nil) | |
1099 | |
1100 (autoload (quote vm-mm-layout-encoding) "vm-mime" nil nil nil) | |
1101 | |
1102 (autoload (quote vm-mm-layout-id) "vm-mime" nil nil nil) | |
1103 | |
1104 (autoload (quote vm-mm-layout-description) "vm-mime" nil nil nil) | |
1105 | |
1106 (autoload (quote vm-mm-layout-disposition) "vm-mime" nil nil nil) | |
1107 | |
1108 (autoload (quote vm-mm-layout-header-start) "vm-mime" nil nil nil) | |
1109 | |
1110 (autoload (quote vm-mm-layout-body-start) "vm-mime" nil nil nil) | |
1111 | |
1112 (autoload (quote vm-mm-layout-body-end) "vm-mime" nil nil nil) | |
1113 | |
1114 (autoload (quote vm-mm-layout-parts) "vm-mime" nil nil nil) | |
1115 | |
1116 (autoload (quote vm-mm-layout-cache) "vm-mime" nil nil nil) | |
1117 | |
1118 (autoload (quote vm-set-mm-layout-cache) "vm-mime" nil nil nil) | |
1119 | |
1120 (autoload (quote vm-mm-layout) "vm-mime" nil nil nil) | |
1121 | |
1122 (autoload (quote vm-mm-encoded-header) "vm-mime" nil nil nil) | |
1123 | |
1124 (autoload (quote vm-mime-Q-decode-region) "vm-mime" nil nil nil) | |
1125 | |
1126 (autoload (quote vm-mime-Q-encode-region) "vm-mime" nil nil nil) | |
1127 | |
1128 (autoload (quote vm-mime-Q-decode-string) "vm-mime" nil nil nil) | |
1129 | |
1130 (autoload (quote vm-mime-B-decode-string) "vm-mime" nil nil nil) | |
1131 | |
1132 (autoload (quote vm-mime-Q-encode-string) "vm-mime" nil nil nil) | |
1133 | |
1134 (autoload (quote vm-mime-B-encode-string) "vm-mime" nil nil nil) | |
1135 | |
1136 (autoload (quote vm-mime-crlf-to-lf-region) "vm-mime" nil nil nil) | |
1137 | |
1138 (autoload (quote vm-mime-lf-to-crlf-region) "vm-mime" nil nil nil) | |
1139 | |
1140 (autoload (quote vm-mime-charset-decode-region) "vm-mime" nil nil nil) | |
1141 | |
1142 (autoload (quote vm-mime-transfer-decode-region) "vm-mime" nil nil nil) | |
1143 | |
1144 (autoload (quote vm-mime-base64-decode-region) "vm-mime" nil nil nil) | |
1145 | |
1146 (autoload (quote vm-mime-base64-encode-region) "vm-mime" nil nil nil) | |
1147 | |
1148 (autoload (quote vm-mime-qp-decode-region) "vm-mime" nil nil nil) | |
1149 | |
1150 (autoload (quote vm-mime-qp-encode-region) "vm-mime" nil nil nil) | |
1151 | |
1152 (autoload (quote vm-decode-mime-message-headers) "vm-mime" nil nil nil) | |
1153 | |
1154 (autoload (quote vm-decode-mime-encoded-words) "vm-mime" nil nil nil) | |
1155 | |
1156 (autoload (quote vm-decode-mime-encoded-words-maybe) "vm-mime" nil nil nil) | |
1157 | |
1158 (autoload (quote vm-mime-parse-content-header) "vm-mime" nil nil nil) | |
1159 | |
1160 (autoload (quote vm-mime-get-header-contents) "vm-mime" nil nil nil) | |
1161 | |
1162 (autoload (quote vm-mime-parse-entity) "vm-mime" nil nil nil) | |
1163 | |
1164 (autoload (quote vm-mime-parse-entity-safe) "vm-mime" nil nil nil) | |
1165 | |
1166 (autoload (quote vm-mime-get-xxx-parameter) "vm-mime" nil nil nil) | |
1167 | |
1168 (autoload (quote vm-mime-get-parameter) "vm-mime" nil nil nil) | |
1169 | |
1170 (autoload (quote vm-mime-get-disposition-parameter) "vm-mime" nil nil nil) | |
1171 | |
1172 (autoload (quote vm-mime-insert-mime-body) "vm-mime" nil nil nil) | |
1173 | |
1174 (autoload (quote vm-mime-insert-mime-headers) "vm-mime" nil nil nil) | |
1175 | |
1176 (autoload (quote vm-make-presentation-copy) "vm-mime" nil nil nil) | |
1177 | |
1178 (autoload (quote vm-determine-proper-charset) "vm-mime" nil nil nil) | |
1179 | |
1180 (autoload (quote vm-determine-proper-content-transfer-encoding) "vm-mime" nil nil nil) | |
1181 | |
1182 (autoload (quote vm-mime-types-match) "vm-mime" nil nil nil) | |
1183 | |
1184 (autoload (quote vm-mime-can-display-internal) "vm-mime" nil nil nil) | |
1185 | |
1186 (autoload (quote vm-mime-can-convert) "vm-mime" nil nil nil) | |
1187 | |
1188 (autoload (quote vm-mime-convert-undisplayable-layout) "vm-mime" nil nil nil) | |
1189 | |
1190 (autoload (quote vm-mime-should-display-button) "vm-mime" nil nil nil) | |
1191 | |
1192 (autoload (quote vm-mime-should-display-internal) "vm-mime" nil nil nil) | |
1193 | |
1194 (autoload (quote vm-mime-find-external-viewer) "vm-mime" nil nil nil) | |
1195 | |
1196 (autoload (quote vm-mime-delete-button-maybe) "vm-mime" nil nil nil) | |
1197 | |
1198 (autoload (quote vm-decode-mime-message) "vm-mime" "Decode the MIME objects in the current message. | |
1199 | |
1200 The first time this command is run on a message, decoding is done. | |
1201 The second time, buttons for all the objects are displayed instead. | |
1202 The third time, the raw, undecoded data is displayed. | |
1203 | |
1204 If decoding, the decoded objects might be displayed immediately, or | |
1205 buttons might be displayed that you need to activate to view the | |
1206 object. See the documentation for the variables | |
1207 | |
1208 vm-auto-displayed-mime-content-types | |
1209 vm-mime-internal-content-types | |
1210 vm-mime-external-content-types-alist | |
1211 | |
1212 to see how to control whether you see buttons or objects. | |
1213 | |
1214 If the variable vm-mime-display-function is set, then its value | |
1215 is called as a function with no arguments, and none of the | |
1216 actions mentioned in the preceding paragraphs are done. At the | |
1217 time of the call, the current buffer will be the presentation | |
1218 buffer for the folder and a copy of the current message will be | |
1219 in the buffer. The function is expected to make the message | |
1220 `MIME presentable' to the user in whatever manner it sees fit." t nil) | |
1221 | |
1222 (autoload (quote vm-decode-mime-layout) "vm-mime" nil nil nil) | |
1223 | |
1224 (autoload (quote vm-mime-display-button-text) "vm-mime" nil nil nil) | |
1225 | |
1226 (autoload (quote vm-mime-display-internal-text/html) "vm-mime" nil nil nil) | |
1227 | |
1228 (autoload (quote vm-mime-display-internal-text/plain) "vm-mime" nil nil nil) | |
1229 | |
1230 (autoload (quote vm-mime-display-internal-text/enriched) "vm-mime" nil nil nil) | |
1231 | |
1232 (autoload (quote vm-mime-display-external-generic) "vm-mime" nil nil nil) | |
1233 | |
1234 (autoload (quote vm-mime-display-internal-application/octet-stream) "vm-mime" nil nil nil) | |
1235 | |
1236 (autoload (quote vm-mime-display-button-image) "vm-mime" nil nil nil) | |
1237 | |
1238 (autoload (quote vm-mime-display-button-audio) "vm-mime" nil nil nil) | |
1239 | |
1240 (autoload (quote vm-mime-display-button-video) "vm-mime" nil nil nil) | |
1241 | |
1242 (autoload (quote vm-mime-display-button-message) "vm-mime" nil nil nil) | |
1243 | |
1244 (autoload (quote vm-mime-display-button-multipart) "vm-mime" nil nil nil) | |
1245 | |
1246 (autoload (quote vm-mime-display-internal-multipart/mixed) "vm-mime" nil nil nil) | |
1247 | |
1248 (autoload (quote vm-mime-display-internal-multipart/alternative) "vm-mime" nil nil nil) | |
1249 | |
1250 (autoload (quote vm-mime-display-button-multipart/parallel) "vm-mime" nil nil nil) | |
1251 | |
1252 (autoload (quote vm-mime-display-internal-multipart/digest) "vm-mime" nil nil nil) | |
1253 | |
1254 (autoload (quote vm-mime-display-internal-message/rfc822) "vm-mime" nil nil nil) | |
1255 | |
1256 (autoload (quote vm-mime-display-internal-message/partial) "vm-mime" nil nil nil) | |
1257 | |
1258 (autoload (quote vm-mime-display-internal-image-xxxx) "vm-mime" nil nil nil) | |
1259 | |
1260 (autoload (quote vm-mime-display-internal-image/gif) "vm-mime" nil nil nil) | |
1261 | |
1262 (autoload (quote vm-mime-display-internal-image/jpeg) "vm-mime" nil nil nil) | |
1263 | |
1264 (autoload (quote vm-mime-display-internal-image/png) "vm-mime" nil nil nil) | |
1265 | |
1266 (autoload (quote vm-mime-display-internal-image/tiff) "vm-mime" nil nil nil) | |
1267 | |
1268 (autoload (quote vm-mime-display-internal-audio/basic) "vm-mime" nil nil nil) | |
1269 | |
1270 (autoload (quote vm-mime-display-button-xxxx) "vm-mime" nil nil nil) | |
1271 | |
1272 (autoload (quote vm-mime-run-display-function-at-point) "vm-mime" nil t nil) | |
1273 | |
1274 (autoload (quote vm-mime-insert-button) "vm-mime" nil nil nil) | |
1275 | |
1276 (autoload (quote vm-mime-send-body-to-file) "vm-mime" nil nil nil) | |
1277 | |
1278 (autoload (quote vm-mime-pipe-body-to-command) "vm-mime" nil nil nil) | |
1279 | |
1280 (autoload (quote vm-mime-pipe-body-to-command-discard-output) "vm-mime" nil nil nil) | |
1281 | |
1282 (autoload (quote vm-mime-scrub-description) "vm-mime" nil nil nil) | |
1283 | |
1284 (autoload (quote vm-mime-layout-description) "vm-mime" nil nil nil) | |
1285 | |
1286 (autoload (quote vm-mime-layout-contains-type) "vm-mime" nil nil nil) | |
1287 | |
1288 (autoload (quote vm-mime-plain-message-p) "vm-mime" nil nil nil) | |
1289 | |
1290 (autoload (quote vm-mime-text-type-p) "vm-mime" nil nil nil) | |
1291 | |
1292 (autoload (quote vm-mime-charset-internally-displayable-p) "vm-mime" nil nil nil) | |
1293 | |
1294 (autoload (quote vm-mime-find-message/partials) "vm-mime" nil nil nil) | |
1295 | |
1296 (autoload (quote vm-message-at-point) "vm-mime" nil nil nil) | |
1297 | |
1298 (autoload (quote vm-mime-make-multipart-boundary) "vm-mime" nil nil nil) | |
1299 | |
1300 (autoload (quote vm-mime-attach-file) "vm-mime" "Attach a file to a VM composition buffer to be sent along with the message. | |
1301 The file is not inserted into the buffer and MIME encoded until | |
1302 you execute vm-mail-send or vm-mail-send-and-exit. A visible tag | |
1303 indicating the existence of the attachment is placed in the | |
1304 composition buffer. You can move the attachment around or remove | |
1305 it entirely with normal text editing commands. If you remove the | |
1306 attachment tag, the attachment will not be sent. | |
1307 | |
1308 First argument, FILE, is the name of the file to attach. Second | |
1309 argument, TYPE, is the MIME Content-Type of the file. Optional | |
1310 third argument CHARSET is the character set of the attached | |
1311 document. This argument is only used for text types, and it | |
1312 is ignored for other types. | |
1313 | |
1314 When called interactively all arguments are read from the | |
1315 minibuffer. | |
1316 | |
1317 This command is for attaching files that do not have a MIME | |
1318 header section at the top. For files with MIME headers, you | |
1319 should use vm-mime-attach-mime-file to attach such a file. VM | |
1320 will extract the content type information from the headers in | |
1321 this case and not prompt you for it in the minibuffer." t nil) | |
1322 | |
1323 (autoload (quote vm-mime-attach-mime-file) "vm-mime" "Attach a MIME encoded file to a VM composition buffer to be sent | |
1324 along with the message. | |
1325 | |
1326 The file is not inserted into the buffer until you execute | |
1327 vm-mail-send or vm-mail-send-and-exit. A visible tag indicating | |
1328 the existence of the attachment is placed in the composition | |
1329 buffer. You can move the attachment around or remove it entirely | |
1330 with normal text editing commands. If you remove the attachment | |
1331 tag, the attachment will not be sent. | |
1332 | |
1333 The sole argument, FILE, is the name of the file to attach. | |
1334 When called interactively the FILE argument is read from the | |
1335 minibuffer. | |
1336 | |
1337 This command is for attaching files that have a MIME | |
1338 header section at the top. For files without MIME headers, you | |
1339 should use vm-mime-attach-file to attach such a file. VM | |
1340 will interactively query you for the file type information." t nil) | |
1341 | |
1342 (autoload (quote vm-mime-attach-object) "vm-mime" nil nil nil) | |
1343 | |
1344 (autoload (quote vm-mime-default-type-from-filename) "vm-mime" nil nil nil) | |
1345 | |
1346 (autoload (quote vm-remove-mail-mode-header-separator) "vm-mime" nil nil nil) | |
1347 | |
1348 (autoload (quote vm-add-mail-mode-header-separator) "vm-mime" nil nil nil) | |
1349 | |
1350 (autoload (quote vm-mime-transfer-encode-region) "vm-mime" nil nil nil) | |
1351 | |
1352 (autoload (quote vm-mime-transfer-encode-layout) "vm-mime" nil nil nil) | |
1353 | |
1354 (autoload (quote vm-mime-encode-composition) "vm-mime" "MIME encode the current buffer. | |
1355 Attachment tags added to the buffer with vm-mime-attach-file are expanded | |
1356 and the approriate content-type and boundary markup information is added." t nil) | |
1357 | |
1358 (autoload (quote vm-mime-fragment-composition) "vm-mime" nil nil nil) | |
1359 | |
1360 (autoload (quote vm-mime-preview-composition) "vm-mime" "Show how the current composition buffer might be displayed | |
1361 in a MIME-aware mail reader. VM copies and encodes the current | |
1362 mail composition buffer and displays it as a mail folder. | |
1363 Type `q' to quit this temp folder and return to composing your | |
1364 message." t nil) | |
1365 | |
1366 (autoload (quote vm-mime-composite-type-p) "vm-mime" nil nil nil) | |
1367 | |
1368 (autoload (quote vm-mime-map-atomic-layouts) "vm-mime" nil nil nil) | |
1038 | 1369 |
1039 (autoload (quote vm-minibuffer-complete-word) "vm-minibuf" nil t nil) | 1370 (autoload (quote vm-minibuffer-complete-word) "vm-minibuf" nil t nil) |
1040 | 1371 |
1041 (autoload (quote vm-minibuffer-complete-word-and-exit) "vm-minibuf" nil t nil) | 1372 (autoload (quote vm-minibuffer-complete-word-and-exit) "vm-minibuf" nil t nil) |
1042 | 1373 |
1109 | 1440 |
1110 (autoload (quote vm-select-folder-buffer) "vm-misc" nil nil (quote macro)) | 1441 (autoload (quote vm-select-folder-buffer) "vm-misc" nil nil (quote macro)) |
1111 | 1442 |
1112 (autoload (quote vm-check-for-killed-summary) "vm-misc" nil nil nil) | 1443 (autoload (quote vm-check-for-killed-summary) "vm-misc" nil nil nil) |
1113 | 1444 |
1445 (autoload (quote vm-check-for-killed-presentation) "vm-misc" nil nil nil) | |
1446 | |
1114 (autoload (quote vm-check-for-killed-folder) "vm-misc" nil nil nil) | 1447 (autoload (quote vm-check-for-killed-folder) "vm-misc" nil nil nil) |
1115 | 1448 |
1116 (autoload (quote vm-error-if-folder-read-only) "vm-misc" nil nil (quote macro)) | 1449 (autoload (quote vm-error-if-folder-read-only) "vm-misc" nil nil (quote macro)) |
1117 | 1450 |
1118 (autoload (quote vm-error-if-virtual-folder) "vm-misc" nil nil (quote macro)) | 1451 (autoload (quote vm-error-if-virtual-folder) "vm-misc" nil nil (quote macro)) |
1136 (autoload (quote vm-mapcar) "vm-misc" nil nil nil) | 1469 (autoload (quote vm-mapcar) "vm-misc" nil nil nil) |
1137 | 1470 |
1138 (autoload (quote vm-mapc) "vm-misc" nil nil nil) | 1471 (autoload (quote vm-mapc) "vm-misc" nil nil nil) |
1139 | 1472 |
1140 (autoload (quote vm-delete) "vm-misc" nil nil nil) | 1473 (autoload (quote vm-delete) "vm-misc" nil nil nil) |
1474 | |
1475 (autoload (quote vm-delete-directory-file-names) "vm-misc" nil nil nil) | |
1476 | |
1477 (autoload (quote vm-delete-backup-file-names) "vm-misc" nil nil nil) | |
1478 | |
1479 (autoload (quote vm-delete-auto-save-file-names) "vm-misc" nil nil nil) | |
1141 | 1480 |
1142 (autoload (quote vm-delete-duplicates) "vm-misc" "Delete duplicate equivalent strings from the list. | 1481 (autoload (quote vm-delete-duplicates) "vm-misc" "Delete duplicate equivalent strings from the list. |
1143 If ALL is t, then if there is more than one occurrence of a string in the list, | 1482 If ALL is t, then if there is more than one occurrence of a string in the list, |
1144 then all occurrences of it are removed instead of just the subsequent ones. | 1483 then all occurrences of it are removed instead of just the subsequent ones. |
1145 If HACK-ADDRESSES is t, then the strings are considered to be mail addresses, | 1484 If HACK-ADDRESSES is t, then the strings are considered to be mail addresses, |
1156 | 1495 |
1157 (autoload (quote vm-copy) "vm-misc" nil nil nil) | 1496 (autoload (quote vm-copy) "vm-misc" nil nil nil) |
1158 | 1497 |
1159 (autoload (quote vm-xemacs-p) "vm-misc" nil nil nil) | 1498 (autoload (quote vm-xemacs-p) "vm-misc" nil nil nil) |
1160 | 1499 |
1500 (autoload (quote vm-xemacs-mule-p) "vm-misc" nil nil nil) | |
1501 | |
1161 (autoload (quote vm-fsfemacs-19-p) "vm-misc" nil nil nil) | 1502 (autoload (quote vm-fsfemacs-19-p) "vm-misc" nil nil nil) |
1162 | 1503 |
1163 (autoload (quote vm-multiple-frames-possible-p) "vm-misc" nil nil nil) | 1504 (autoload (quote vm-multiple-frames-possible-p) "vm-misc" nil nil nil) |
1164 | 1505 |
1165 (autoload (quote vm-mouse-support-possible-p) "vm-misc" nil nil nil) | 1506 (autoload (quote vm-mouse-support-possible-p) "vm-misc" nil nil nil) |
1190 | 1531 |
1191 (autoload (quote vm-default-buffer-substring-no-properties) "vm-misc" nil nil nil) | 1532 (autoload (quote vm-default-buffer-substring-no-properties) "vm-misc" nil nil nil) |
1192 | 1533 |
1193 (autoload (quote vm-buffer-string-no-properties) "vm-misc" nil nil nil) | 1534 (autoload (quote vm-buffer-string-no-properties) "vm-misc" nil nil nil) |
1194 | 1535 |
1536 (autoload (quote vm-insert-region-from-buffer) "vm-misc" nil nil nil) | |
1537 | |
1538 (autoload (quote vm-copy-extent) "vm-misc" nil nil nil) | |
1539 | |
1540 (autoload (quote vm-make-tempfile-name) "vm-misc" nil nil nil) | |
1541 | |
1542 (autoload (quote vm-insert-char) "vm-misc" nil nil nil) | |
1543 | |
1544 (autoload (quote vm-xemacs-compatible-insert-char) "vm-misc" nil nil nil) | |
1545 | |
1546 (autoload (quote vm-symbol-lists-intersect-p) "vm-misc" nil nil nil) | |
1547 | |
1548 (autoload (quote vm-set-buffer-variable) "vm-misc" nil nil nil) | |
1549 | |
1195 (autoload (quote vm-mouse-fsfemacs-mouse-p) "vm-mouse" nil nil nil) | 1550 (autoload (quote vm-mouse-fsfemacs-mouse-p) "vm-mouse" nil nil nil) |
1196 | 1551 |
1197 (autoload (quote vm-mouse-xemacs-mouse-p) "vm-mouse" nil nil nil) | 1552 (autoload (quote vm-mouse-xemacs-mouse-p) "vm-mouse" nil nil nil) |
1198 | 1553 |
1199 (autoload (quote vm-mouse-set-mouse-track-highlight) "vm-mouse" nil nil nil) | 1554 (autoload (quote vm-mouse-set-mouse-track-highlight) "vm-mouse" nil nil nil) |
1200 | 1555 |
1201 (autoload (quote vm-mouse-button-2) "vm-mouse" nil t nil) | 1556 (autoload (quote vm-mouse-button-2) "vm-mouse" nil t nil) |
1202 | 1557 |
1203 (autoload (quote vm-mouse-button-3) "vm-mouse" nil t nil) | 1558 (autoload (quote vm-mouse-button-3) "vm-mouse" nil t nil) |
1204 | 1559 |
1205 (autoload (quote vm-mouse-3-help) "vm-mouse" "Use mouse button 3 to see a menu of options." nil nil) | 1560 (autoload (quote vm-mouse-3-help) "vm-mouse" nil nil nil) |
1206 | 1561 |
1207 (autoload (quote vm-mouse-get-mouse-track-string) "vm-mouse" nil nil nil) | 1562 (autoload (quote vm-mouse-get-mouse-track-string) "vm-mouse" nil nil nil) |
1208 | 1563 |
1209 (autoload (quote vm-mouse-popup-or-select) "vm-mouse" nil t nil) | 1564 (autoload (quote vm-mouse-popup-or-select) "vm-mouse" nil t nil) |
1210 | 1565 |
1221 (autoload (quote vm-mouse-install-mouse) "vm-mouse" nil nil nil) | 1576 (autoload (quote vm-mouse-install-mouse) "vm-mouse" nil nil nil) |
1222 | 1577 |
1223 (autoload (quote vm-run-background-command) "vm-mouse" nil nil nil) | 1578 (autoload (quote vm-run-background-command) "vm-mouse" nil nil nil) |
1224 | 1579 |
1225 (autoload (quote vm-run-command) "vm-mouse" nil nil nil) | 1580 (autoload (quote vm-run-command) "vm-mouse" nil nil nil) |
1581 | |
1582 (autoload (quote vm-run-command-on-region) "vm-mouse" nil nil nil) | |
1226 | 1583 |
1227 (autoload (quote vm-mouse-read-file-name) "vm-mouse" "Like read-file-name, except uses a mouse driven interface. | 1584 (autoload (quote vm-mouse-read-file-name) "vm-mouse" "Like read-file-name, except uses a mouse driven interface. |
1228 HISTORY argument is ignored." nil nil) | 1585 HISTORY argument is ignored." nil nil) |
1229 | 1586 |
1230 (autoload (quote vm-mouse-read-file-name-event-handler) "vm-mouse" nil nil nil) | 1587 (autoload (quote vm-mouse-read-file-name-event-handler) "vm-mouse" nil nil nil) |
1317 (autoload (quote vm-energize-headers) "vm-page" nil nil nil) | 1674 (autoload (quote vm-energize-headers) "vm-page" nil nil nil) |
1318 | 1675 |
1319 (autoload (quote vm-display-xface) "vm-page" nil nil nil) | 1676 (autoload (quote vm-display-xface) "vm-page" nil nil nil) |
1320 | 1677 |
1321 (autoload (quote vm-url-help) "vm-page" nil nil nil) | 1678 (autoload (quote vm-url-help) "vm-page" nil nil nil) |
1679 | |
1680 (autoload (quote vm-energize-urls-in-message-region) "vm-page" nil nil nil) | |
1681 | |
1682 (autoload (quote vm-highlight-headers-maybe) "vm-page" nil nil nil) | |
1683 | |
1684 (autoload (quote vm-energize-headers-and-xfaces) "vm-page" nil nil nil) | |
1685 | |
1686 (autoload (quote vm-narrow-for-preview) "vm-page" nil nil nil) | |
1322 | 1687 |
1323 (autoload (quote vm-preview-current-message) "vm-page" nil nil nil) | 1688 (autoload (quote vm-preview-current-message) "vm-page" nil nil nil) |
1324 | 1689 |
1325 (autoload (quote vm-show-current-message) "vm-page" nil nil nil) | 1690 (autoload (quote vm-show-current-message) "vm-page" nil nil nil) |
1326 | 1691 |
1395 (autoload (quote vm-help-tale) "vm-reply" nil nil nil) | 1760 (autoload (quote vm-help-tale) "vm-reply" nil nil nil) |
1396 | 1761 |
1397 (autoload (quote vm-mail-send) "vm-reply" "Just like mail-send except that VM flags the appropriate message(s) | 1762 (autoload (quote vm-mail-send) "vm-reply" "Just like mail-send except that VM flags the appropriate message(s) |
1398 as replied to, forwarded, etc, if appropriate." t nil) | 1763 as replied to, forwarded, etc, if appropriate." t nil) |
1399 | 1764 |
1765 (autoload (quote vm-mail-mode-get-header-contents) "vm-reply" nil nil nil) | |
1766 | |
1400 (autoload (quote vm-rename-current-mail-buffer) "vm-reply" nil nil nil) | 1767 (autoload (quote vm-rename-current-mail-buffer) "vm-reply" nil nil nil) |
1401 | 1768 |
1402 (autoload (quote vm-mail-mark-replied) "vm-reply" nil nil nil) | 1769 (autoload (quote vm-mail-mark-replied) "vm-reply" nil nil nil) |
1403 | 1770 |
1404 (autoload (quote vm-mail-mark-forwarded) "vm-reply" nil nil nil) | 1771 (autoload (quote vm-mail-mark-forwarded) "vm-reply" nil nil nil) |
1468 only marked messages will be put into the digest." t nil) | 1835 only marked messages will be put into the digest." t nil) |
1469 | 1836 |
1470 (autoload (quote vm-send-rfc934-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 934 digest." t nil) | 1837 (autoload (quote vm-send-rfc934-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 934 digest." t nil) |
1471 | 1838 |
1472 (autoload (quote vm-send-rfc1153-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 1153 digest." t nil) | 1839 (autoload (quote vm-send-rfc1153-digest) "vm-reply" "Like vm-send-digest but always sends an RFC 1153 digest." t nil) |
1840 | |
1841 (autoload (quote vm-send-mime-digest) "vm-reply" "Like vm-send-digest but always sends an MIME (multipart/digest) digest." t nil) | |
1473 | 1842 |
1474 (autoload (quote vm-continue-composing-message) "vm-reply" "Find and select the most recently used mail composition buffer. | 1843 (autoload (quote vm-continue-composing-message) "vm-reply" "Find and select the most recently used mail composition buffer. |
1475 If the selected buffer is already a Mail mode buffer then it is | 1844 If the selected buffer is already a Mail mode buffer then it is |
1476 buried before beginning the search. Non Mail mode buffers and | 1845 buried before beginning the search. Non Mail mode buffers and |
1477 unmodified Mail buffers are skipped. Prefix arg means unmodified | 1846 unmodified Mail buffers are skipped. Prefix arg means unmodified |
1478 Mail mode buffers are not skipped. If no suitable buffer is | 1847 Mail mode buffers are not skipped. If no suitable buffer is |
1479 found, the current buffer remains selected." t nil) | 1848 found, the current buffer remains selected." t nil) |
1480 | 1849 |
1850 (autoload (quote vm-mail-to-mailto-url) "vm-reply" nil nil nil) | |
1851 | |
1481 (autoload (quote vm-mail-internal) "vm-reply" nil nil nil) | 1852 (autoload (quote vm-mail-internal) "vm-reply" nil nil nil) |
1482 | 1853 |
1483 (autoload (quote vm-reply-other-frame) "vm-reply" "Like vm-reply, but run in a newly created frame." t nil) | 1854 (autoload (quote vm-reply-other-frame) "vm-reply" "Like vm-reply, but run in a newly created frame." t nil) |
1484 | 1855 |
1485 (autoload (quote vm-reply-include-text-other-frame) "vm-reply" "Like vm-reply-include-text, but run in a newly created frame." t nil) | 1856 (autoload (quote vm-reply-include-text-other-frame) "vm-reply" "Like vm-reply-include-text, but run in a newly created frame." t nil) |
1499 (autoload (quote vm-send-digest-other-frame) "vm-reply" "Like vm-send-digest, but run in a newly created frame." t nil) | 1870 (autoload (quote vm-send-digest-other-frame) "vm-reply" "Like vm-send-digest, but run in a newly created frame." t nil) |
1500 | 1871 |
1501 (autoload (quote vm-send-rfc934-digest-other-frame) "vm-reply" "Like vm-send-rfc934-digest, but run in a newly created frame." t nil) | 1872 (autoload (quote vm-send-rfc934-digest-other-frame) "vm-reply" "Like vm-send-rfc934-digest, but run in a newly created frame." t nil) |
1502 | 1873 |
1503 (autoload (quote vm-send-rfc1153-digest-other-frame) "vm-reply" "Like vm-send-rfc1153-digest, but run in a newly created frame." t nil) | 1874 (autoload (quote vm-send-rfc1153-digest-other-frame) "vm-reply" "Like vm-send-rfc1153-digest, but run in a newly created frame." t nil) |
1875 | |
1876 (autoload (quote vm-send-mime-digest-other-frame) "vm-reply" "Like vm-send-mime-digest, but run in a newly created frame." t nil) | |
1504 | 1877 |
1505 (autoload (quote vm-match-data) "vm-save" nil nil nil) | 1878 (autoload (quote vm-match-data) "vm-save" nil nil nil) |
1506 | 1879 |
1507 (autoload (quote vm-auto-select-folder) "vm-save" nil nil nil) | 1880 (autoload (quote vm-auto-select-folder) "vm-save" nil nil nil) |
1508 | 1881 |
1693 | 2066 |
1694 (autoload (quote vm-other-window) "vm-startup" "Like vm, but run in a different window." t nil) | 2067 (autoload (quote vm-other-window) "vm-startup" "Like vm, but run in a different window." t nil) |
1695 | 2068 |
1696 (autoload (quote vm-mode) "vm-startup" "Major mode for reading mail. | 2069 (autoload (quote vm-mode) "vm-startup" "Major mode for reading mail. |
1697 | 2070 |
1698 This is VM 5.96 (beta). | 2071 This is VM 6.13. |
1699 | 2072 |
1700 Commands: | 2073 Commands: |
1701 h - summarize folder contents | 2074 h - summarize folder contents |
1702 C-t - toggle threads display | 2075 C-t - toggle threads display |
1703 | 2076 |
1733 B - resend the current message to another user. | 2106 B - resend the current message to another user. |
1734 c - continue composing the most recent message you were composing | 2107 c - continue composing the most recent message you were composing |
1735 | 2108 |
1736 @ - digestify and mail entire folder contents (the folder is not modified) | 2109 @ - digestify and mail entire folder contents (the folder is not modified) |
1737 * - burst a digest into individual messages, and append and assimilate these | 2110 * - burst a digest into individual messages, and append and assimilate these |
1738 message into the current folder. | 2111 messages into the current folder. |
1739 | 2112 |
1740 G - sort messages by various keys | 2113 G - sort messages by various keys |
1741 | 2114 |
1742 g - get any new mail that has arrived in the system mailbox | 2115 g - get any new mail that has arrived in the system mailbox |
1743 (new mail is appended to the disk and buffer copies of the | 2116 (new mail is appended to the disk and buffer copies of the |
1762 | 2135 |
1763 M M - mark the current message | 2136 M M - mark the current message |
1764 M U - unmark the current message | 2137 M U - unmark the current message |
1765 M m - mark all messages | 2138 M m - mark all messages |
1766 M u - unmark all messages | 2139 M u - unmark all messages |
1767 M C - mark messages matches by a virtual folder selector | 2140 M C - mark messages matched by a virtual folder selector |
1768 M c - unmark messages matches by a virtual folder selector | 2141 M c - unmark messages matched by a virtual folder selector |
1769 M T - mark thread tree rooted at the current message | 2142 M T - mark thread tree rooted at the current message |
1770 M t - unmark thread tree rooted at the current message | 2143 M t - unmark thread tree rooted at the current message |
1771 M S - mark messages with the same subject as the current message | 2144 M S - mark messages with the same subject as the current message |
1772 M s - unmark messages with the same subject as the current message | 2145 M s - unmark messages with the same subject as the current message |
1773 M A - mark messages with the same author as the current message | 2146 M A - mark messages with the same author as the current message |
1774 M a - unmark messages with the same author as the current message | 2147 M a - unmark messages with the same author as the current message |
2148 M R - mark messages within the point/mark region in the summary | |
2149 M r - unmark messages within the point/mark region in the summary | |
1775 | 2150 |
1776 M ? - partial help for mark commands | 2151 M ? - partial help for mark commands |
1777 | 2152 |
1778 W S - save the current window configuration to a name | 2153 W S - save the current window configuration to a name |
1779 W D - delete a window configuration | 2154 W D - delete a window configuration |
1816 | 2191 |
1817 Variables: | 2192 Variables: |
1818 vm-arrived-message-hook | 2193 vm-arrived-message-hook |
1819 vm-arrived-messages-hook | 2194 vm-arrived-messages-hook |
1820 vm-auto-center-summary | 2195 vm-auto-center-summary |
2196 vm-auto-decode-mime-messages | |
2197 vm-auto-displayed-mime-content-types | |
1821 vm-auto-folder-alist | 2198 vm-auto-folder-alist |
1822 vm-auto-folder-case-fold-search | 2199 vm-auto-folder-case-fold-search |
1823 vm-auto-get-new-mail | 2200 vm-auto-get-new-mail |
1824 vm-auto-next-message | 2201 vm-auto-next-message |
1825 vm-berkeley-mail-compatibility | 2202 vm-berkeley-mail-compatibility |
2203 vm-burst-digest-messages-inherit-labels | |
1826 vm-check-folder-types | 2204 vm-check-folder-types |
1827 vm-convert-folder-types | |
1828 vm-circular-folders | 2205 vm-circular-folders |
1829 vm-confirm-new-folders | 2206 vm-confirm-new-folders |
1830 vm-confirm-quit | 2207 vm-confirm-quit |
2208 vm-convert-folder-types | |
1831 vm-crash-box | 2209 vm-crash-box |
2210 vm-crash-box-suffix | |
1832 vm-default-folder-type | 2211 vm-default-folder-type |
1833 vm-delete-after-archiving | 2212 vm-delete-after-archiving |
1834 vm-delete-after-bursting | 2213 vm-delete-after-bursting |
1835 vm-delete-after-saving | 2214 vm-delete-after-saving |
1836 vm-delete-empty-folders | 2215 vm-delete-empty-folders |
1837 vm-digest-burst-type | 2216 vm-digest-burst-type |
1838 vm-digest-center-preamble | 2217 vm-digest-center-preamble |
1839 vm-digest-preamble-format | 2218 vm-digest-preamble-format |
1840 vm-digest-send-type | 2219 vm-digest-send-type |
1841 vm-display-buffer-hook | 2220 vm-display-buffer-hook |
2221 vm-display-using-mime | |
1842 vm-edit-message-hook | 2222 vm-edit-message-hook |
1843 vm-folder-directory | 2223 vm-folder-directory |
1844 vm-folder-read-only | 2224 vm-folder-read-only |
1845 vm-follow-summary-cursor | 2225 vm-follow-summary-cursor |
1846 vm-forward-message-hook | 2226 vm-forward-message-hook |
1847 vm-forwarded-headers | 2227 vm-forwarded-headers |
1848 vm-forwarding-digest-type | 2228 vm-forwarding-digest-type |
1849 vm-forwarding-subject-format | 2229 vm-forwarding-subject-format |
1850 vm-frame-parameter-alist | 2230 vm-frame-parameter-alist |
2231 vm-frame-per-completion | |
1851 vm-frame-per-composition | 2232 vm-frame-per-composition |
2233 vm-frame-per-edit | |
1852 vm-frame-per-folder | 2234 vm-frame-per-folder |
2235 vm-frame-per-summary | |
1853 vm-highlighted-header-face | 2236 vm-highlighted-header-face |
1854 vm-highlighted-header-regexp | 2237 vm-highlighted-header-regexp |
1855 vm-honor-page-delimiters | 2238 vm-honor-page-delimiters |
1856 vm-in-reply-to-format | 2239 vm-in-reply-to-format |
1857 vm-included-text-attribution-format | 2240 vm-included-text-attribution-format |
1858 vm-included-text-discard-header-regexp | 2241 vm-included-text-discard-header-regexp |
1859 vm-included-text-headers | 2242 vm-included-text-headers |
1860 vm-included-text-prefix | 2243 vm-included-text-prefix |
1861 vm-inhibit-startup-message | |
1862 vm-invisible-header-regexp | 2244 vm-invisible-header-regexp |
1863 vm-jump-to-new-messages | 2245 vm-jump-to-new-messages |
1864 vm-jump-to-unread-messages | 2246 vm-jump-to-unread-messages |
2247 vm-keep-crash-boxes | |
1865 vm-keep-sent-messages | 2248 vm-keep-sent-messages |
1866 vm-keep-crash-boxes | |
1867 vm-mail-header-from | 2249 vm-mail-header-from |
1868 vm-mail-mode-hook | 2250 vm-mail-mode-hook |
2251 vm-make-crash-box-name | |
2252 vm-make-spool-file-name | |
2253 vm-mime-8bit-composition-charset | |
2254 vm-mime-8bit-text-transfer-encoding | |
2255 vm-mime-alternative-select-method | |
2256 vm-mime-attachment-auto-type-alist | |
2257 vm-mime-attachment-save-directory | |
2258 vm-mime-avoid-folding-content-type | |
2259 vm-mime-base64-decoder-program | |
2260 vm-mime-base64-decoder-switches | |
2261 vm-mime-base64-encoder-program | |
2262 vm-mime-base64-encoder-switches | |
2263 vm-mime-button-face | |
2264 vm-mime-digest-discard-header-regexp | |
2265 vm-mime-digest-headers | |
2266 vm-mime-display-function | |
2267 vm-mime-external-content-types-alist | |
2268 vm-mime-internal-content-types | |
2269 vm-mime-max-message-size | |
1869 vm-mode-hook | 2270 vm-mode-hook |
1870 vm-mosaic-program | 2271 vm-mosaic-program |
1871 vm-move-after-deleting | 2272 vm-move-after-deleting |
2273 vm-move-after-killing | |
1872 vm-move-after-undeleting | 2274 vm-move-after-undeleting |
1873 vm-move-messages-physically | 2275 vm-move-messages-physically |
2276 vm-mutable-frames | |
1874 vm-mutable-windows | 2277 vm-mutable-windows |
1875 vm-mutable-frames | |
1876 vm-netscape-program | 2278 vm-netscape-program |
1877 vm-options-file | |
1878 vm-pop-md5-program | 2279 vm-pop-md5-program |
2280 vm-popup-menu-on-mouse-3 | |
2281 vm-preferences-file | |
1879 vm-preview-lines | 2282 vm-preview-lines |
1880 vm-preview-read-messages | 2283 vm-preview-read-messages |
1881 vm-primary-inbox | 2284 vm-primary-inbox |
1882 vm-quit-hook | 2285 vm-quit-hook |
1883 vm-recognize-pop-maildrops | 2286 vm-recognize-pop-maildrops |
1884 vm-reply-hook | 2287 vm-reply-hook |
2288 vm-reply-ignored-addresses | |
1885 vm-reply-ignored-reply-tos | 2289 vm-reply-ignored-reply-tos |
1886 vm-reply-ignored-addresses | |
1887 vm-reply-subject-prefix | 2290 vm-reply-subject-prefix |
1888 vm-resend-bounced-discard-header-regexp | 2291 vm-resend-bounced-discard-header-regexp |
1889 vm-resend-bounced-headers | 2292 vm-resend-bounced-headers |
1890 vm-resend-bounced-message-hook | 2293 vm-resend-bounced-message-hook |
1891 vm-resend-discard-header-regexp | 2294 vm-resend-discard-header-regexp |
1899 vm-search-using-regexps | 2302 vm-search-using-regexps |
1900 vm-select-message-hook | 2303 vm-select-message-hook |
1901 vm-select-new-message-hook | 2304 vm-select-new-message-hook |
1902 vm-select-unread-message-hook | 2305 vm-select-unread-message-hook |
1903 vm-send-digest-hook | 2306 vm-send-digest-hook |
2307 vm-send-using-mime | |
1904 vm-skip-deleted-messages | 2308 vm-skip-deleted-messages |
1905 vm-skip-read-messages | 2309 vm-skip-read-messages |
1906 vm-spool-files | 2310 vm-spool-files |
2311 vm-spool-file-suffixes | |
1907 vm-startup-with-summary | 2312 vm-startup-with-summary |
1908 vm-strip-reply-headers | 2313 vm-strip-reply-headers |
1909 vm-summary-arrow | 2314 vm-summary-arrow |
1910 vm-summary-format | 2315 vm-summary-format |
1911 vm-summary-highlight-face | 2316 vm-summary-highlight-face |
1912 vm-summary-mode-hook | 2317 vm-summary-mode-hook |
1913 vm-summary-redo-hook | 2318 vm-summary-redo-hook |
1914 vm-summary-show-threads | 2319 vm-summary-show-threads |
1915 vm-summary-subject-no-newlines | |
1916 vm-summary-thread-indent-level | 2320 vm-summary-thread-indent-level |
2321 vm-temp-file-directory | |
2322 vm-tale-is-an-idiot | |
1917 vm-trust-From_-with-Content-Length | 2323 vm-trust-From_-with-Content-Length |
1918 vm-undisplay-buffer-hook | 2324 vm-undisplay-buffer-hook |
1919 vm-unforwarded-header-regexp | 2325 vm-unforwarded-header-regexp |
1920 vm-url-browser | 2326 vm-url-browser |
1921 vm-url-search-limit | 2327 vm-url-search-limit |
1922 vm-use-menus | 2328 vm-use-menus |
2329 vm-use-toolbar | |
1923 vm-virtual-folder-alist | 2330 vm-virtual-folder-alist |
1924 vm-virtual-mirror | 2331 vm-virtual-mirror |
1925 vm-visible-headers | 2332 vm-visible-headers |
1926 vm-visit-folder-hook | 2333 vm-visit-folder-hook |
1927 vm-visit-when-saving | 2334 vm-visit-when-saving |
1969 | 2376 |
1970 (autoload (quote vm-submit-bug-report) "vm-startup" "Submit a bug report, with pertinent information to the VM bug list." t nil) | 2377 (autoload (quote vm-submit-bug-report) "vm-startup" "Submit a bug report, with pertinent information to the VM bug list." t nil) |
1971 | 2378 |
1972 (autoload (quote vm-load-init-file) "vm-startup" nil t nil) | 2379 (autoload (quote vm-load-init-file) "vm-startup" nil t nil) |
1973 | 2380 |
2381 (autoload (quote vm-check-emacs-version) "vm-startup" nil nil nil) | |
2382 | |
1974 (autoload (quote vm-session-initialization) "vm-startup" nil nil nil) | 2383 (autoload (quote vm-session-initialization) "vm-startup" nil nil nil) |
1975 | 2384 |
1976 (autoload (quote vm-summary-mode-internal) "vm-summary" nil nil nil) | 2385 (autoload (quote vm-summary-mode-internal) "vm-summary" nil nil nil) |
1977 | 2386 |
1978 (autoload (quote vm-summarize) "vm-summary" "Summarize the contents of the folder in a summary buffer. | 2387 (autoload (quote vm-summarize) "vm-summary" "Summarize the contents of the folder in a summary buffer. |
2106 (autoload (quote vm-toolbar-can-autofile-p) "vm-toolbar" nil t nil) | 2515 (autoload (quote vm-toolbar-can-autofile-p) "vm-toolbar" nil t nil) |
2107 | 2516 |
2108 (autoload (quote vm-toolbar-autofile-message) "vm-toolbar" nil t nil) | 2517 (autoload (quote vm-toolbar-autofile-message) "vm-toolbar" nil t nil) |
2109 | 2518 |
2110 (autoload (quote vm-toolbar-can-recover-p) "vm-toolbar" nil nil nil) | 2519 (autoload (quote vm-toolbar-can-recover-p) "vm-toolbar" nil nil nil) |
2520 | |
2521 (autoload (quote vm-toolbar-can-decode-mime-p) "vm-toolbar" nil nil nil) | |
2522 | |
2523 (autoload (quote vm-toolbar-can-quit-p) "vm-toolbar" nil nil nil) | |
2111 | 2524 |
2112 (autoload (quote vm-toolbar-update-toolbar) "vm-toolbar" nil nil nil) | 2525 (autoload (quote vm-toolbar-update-toolbar) "vm-toolbar" nil nil nil) |
2113 | 2526 |
2114 (autoload (quote vm-toolbar-install-toolbar) "vm-toolbar" nil nil nil) | 2527 (autoload (quote vm-toolbar-install-toolbar) "vm-toolbar" nil nil nil) |
2115 | 2528 |
2240 Prefix arg means the new virtual folder should be visited read only." t nil) | 2653 Prefix arg means the new virtual folder should be visited read only." t nil) |
2241 | 2654 |
2242 (autoload (quote vm-toggle-virtual-mirror) "vm-virtual" nil t nil) | 2655 (autoload (quote vm-toggle-virtual-mirror) "vm-virtual" nil t nil) |
2243 | 2656 |
2244 (autoload (quote vm-virtual-help) "vm-virtual" nil t nil) | 2657 (autoload (quote vm-virtual-help) "vm-virtual" nil t nil) |
2245 | |
2246 (autoload (quote vm-delete-directory-file-names) "vm-virtual" nil nil nil) | |
2247 | |
2248 (autoload (quote vm-delete-backup-file-names) "vm-virtual" nil nil nil) | |
2249 | |
2250 (autoload (quote vm-delete-auto-save-file-names) "vm-virtual" nil nil nil) | |
2251 | 2658 |
2252 (autoload (quote vm-vs-or) "vm-virtual" nil nil nil) | 2659 (autoload (quote vm-vs-or) "vm-virtual" nil nil nil) |
2253 | 2660 |
2254 (autoload (quote vm-vs-and) "vm-virtual" nil nil nil) | 2661 (autoload (quote vm-vs-and) "vm-virtual" nil nil nil) |
2255 | 2662 |
2378 | 2785 |
2379 (autoload (quote vm-get-visible-buffer-window) "vm-window" nil nil nil) | 2786 (autoload (quote vm-get-visible-buffer-window) "vm-window" nil nil nil) |
2380 | 2787 |
2381 (autoload (quote vm-set-hooks-for-frame-deletion) "vm-window" nil nil nil) | 2788 (autoload (quote vm-set-hooks-for-frame-deletion) "vm-window" nil nil nil) |
2382 | 2789 |
2790 (autoload (quote vm-created-this-frame-p) "vm-window" nil nil nil) | |
2791 | |
2383 (autoload (quote vm-delete-buffer-frame) "vm-window" nil nil nil) | 2792 (autoload (quote vm-delete-buffer-frame) "vm-window" nil nil nil) |
2384 | 2793 |
2794 (autoload (quote vm-register-frame) "vm-window" nil nil nil) | |
2795 | |
2385 (autoload (quote vm-goto-new-frame) "vm-window" nil nil nil) | 2796 (autoload (quote vm-goto-new-frame) "vm-window" nil nil nil) |
2386 | 2797 |
2798 (autoload (quote vm-goto-new-summary-frame-maybe) "vm-window" nil nil nil) | |
2799 | |
2800 (autoload (quote vm-goto-new-folder-frame-maybe) "vm-window" nil nil nil) | |
2801 | |
2387 (autoload (quote vm-warp-mouse-to-frame-maybe) "vm-window" nil nil nil) | 2802 (autoload (quote vm-warp-mouse-to-frame-maybe) "vm-window" nil nil nil) |
2388 | 2803 |
2389 (autoload (quote vm-iconify-frame-xxx) "vm-window" nil nil nil) | 2804 (autoload (quote vm-iconify-frame-xxx) "vm-window" nil nil nil) |