annotate lisp/vm/vm-autoload.el @ 140:585fb297b004 r20-2b4

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