Penguin
Annotated edit history of mutt(1) version 4, including all changes. View license author blame.
Rev Author # Line
1 perry 1 mutt
2 !!!mutt
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 OPTIONS
7 ENVIRONMENT
8 FILES
9 BUGS
10 FLEAS
11 NO WARRANTIES
12 SEE ALSO
13 AUTHOR
14 ----
15 !!NAME
16
17
18 mutt - The Mutt Mail User Agent
19 !!SYNOPSIS
20
21
22 __mutt__ [[-nRyzZ] [[-e ''cmd''] [[-F ''file''] [[-m
23 ''type''] [[-f ''file'']
24
25
26 __mutt__ [[-nx] [[-e ''cmd''] [[-a ''file''] [[-F
27 ''file''] [[-H ''file''] [[-i ''file''] [[-s
28 ''subj''] [[-b ''addr''] [[-c ''addr''] ''addr''
29 [[...]
30
31
32 __mutt__ [[-n] [[-e ''cmd''] [[-F ''file'']
33 -p
34
35
36 __mutt__ -v[[v]
37 !!DESCRIPTION
38
39
40 Mutt is a small but very powerful text based program for
41 reading electronic mail under unix operating systems,
42 including support color terminals, MIME, and a threaded
43 sorting mode.
44 !!OPTIONS
45
46
47 -a ''file''
48
49
50 Attach a file to your message using MIME.
51
52
53 -b ''address''
54
55
56 Specify a blind-carbon-copy (BCC) recipient
57
58
59 -c ''address''
60
61
62 Specify a carbon-copy (CC) recipient
63
64
65 -e ''command''
66
67
68 Specify a configuration command to be run after processing
69 of initialization files.
70
71
72 -f ''mailbox''
73
74
75 Specify which mailbox to load.
76
77
78 -F ''muttrc''
79
80
81 Specify an initialization file to read instead of
82 ~/.muttrc
83
84
85 -h
86
87
88 Display help.
89
90
91 -H ''draft''
92
93
94 Specify a draft file which contains header and body to use
95 to send a message.
96
97
98 -i ''include''
99
100
101 Specify a file to include into the body of a
102 message.
103
104
105 -m ''type''
106
107
108 specify a default mailbox type
109
110
111 -n
112
113
114 Causes Mutt to bypass the system configuration
115 file.
116
117
118 -p
119
120
121 Resume a postponed message.
122
123
124 -R
125
126
127 Open a mailbox in ''read-only'' mode.
128
129
130 -s ''subject''
131
132
133 Specify the subject of the message.
134
135
136 -v
137
138
139 Display the Mutt version number and compile-time
140 definitions.
141
142
143 -x
144
145
146 Emulate the mailx compose mode.
147
148
149 -y
150
151
152 Start Mutt with a listing of all mailboxes specified by the
153 ''mailboxes'' command.
154
155
156 -z
157
158
159 When used with -f, causes Mutt not to start if there are no
160 messages in the mailbox.
161
162
163 -Z
164
165
166 Causes Mutt to open the first mailbox specified by the
167 ''mailboxes'' command which contains new
168 mail.
169 !!ENVIRONMENT
170
171
172 EDITOR
173
174
175 Editor to invoke when composing a message.
176
177
178 EMAIL
179
180
181 The user's e-mail address.
182
183
184 HOME
185
186
187 Full path of the user's home directory.
188
189
190 MAIL
191
192
193 Full path of the user's spool mailbox.
194
195
196 MAILDIR
197
198
199 Full path of the user's spool mailbox. Commonly used when
200 the spool mailbox is a __maildir (5)__
201 folder.
202
203
204 MAILCAPS
205
206
207 Path to search for mailcap files.
208
209
210 MM_NOASK
211
212
213 If this variable is set, mailcap are always used without
214 prompting first.
215
216
217 PGPPATH
218
219
220 Directory in which the user's PGP public keyring can be
221 found.
222
223
224 TMPDIR
225
226
227 Directory in which temporary files are created.
228
229
230 REPLYTO
231
232
233 Default Reply-To address.
234
235
236 VISUAL
237
238
239 Editor to invoke when the ~v command is given in the builtin
240 editor.
241 !!FILES
242
243
244 ~/.muttrc or ~/.mutt/muttrc
245
246
247 User configuration file.
248
249
250 /etc/Muttrc
251
252
253 System-wide configuration file.
254
255
256 /tmp/muttXXXXXX
257
258
259 Temporary files created by Mutt.
260
261
262 ~/.mailcap
263
264
265 User definition for handling non-text MIME
266 types.
267
268
269 /etc/mailcap
270
271
272 System definition for handing non-text MIME
273 types.
274
275
276 ~/.mime.types
277
278
279 User's personal mapping between MIME types and file
280 extensions.
281
282
283 /etc/mime.types
284
285
286 System mapping between MIME types and file
287 extensions.
288
289
290 /usr/bin/mutt_dotlock
291
292
293 The privileged dotlocking program.
294
295
296 /usr/share/doc/mutt/manual.txt.gz
297
298
299 The Mutt manual.
300 !!BUGS
301
302
303 None. Mutts have fleas, not bugs.
304 !!FLEAS
305
306
307 Suspend/resume while editing a file with an external editor
308 does not work under SunOS 4.x if you use the curses lib in
309 /usr/5lib. It ''does'' work with the S-Lang library,
310 however.
311
312
313 Resizing the screen while using an external pager causes
314 Mutt to go haywire on some systems.
315
316
317 suspend/resume does not work under Ultrix.
318
319
320 The help line for the index menu is not updated if you
321 change the bindings for one of the functions listed while
322 Mutt is running.
323
324
325 For a more up-to-date list of bugs, errm, fleas, please
326 visit the mutt project's bug tracking system under
327 http://bugs.guug.de/. To report a bug, please use the
328 flea(1) program.
329 !!NO WARRANTIES
330
331
332 This program is distributed in the hope that it will be
333 useful, but WITHOUT ANY WARRANTY; without even the implied
334 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
335 PURPOSE. See the GNU General Public License for more
336 details.
337 !!SEE ALSO
338
339
340 curses(3), flea(1), mailcap(5),
4 perry 341 maildir(5), mbox(5), mutt_dotlock(1),
1 perry 342 muttrc(5), ncurses(3), sendmail(1),
343 smail(1)
344
345
346 Mutt Home Page: http://www.mutt.org/
347
348
349 The Mutt manual
350
351
352 The GNU General Public License.
353 !!AUTHOR
354
355
356 Michael Elkins, and others. Use
357 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.