1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
|
.\"
.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for
.\" permission to reproduce portions of its copyrighted documentation.
.\" Original documentation from The Open Group can be obtained online at
.\" http://www.opengroup.org/bookstore/.
.\"
.\" The Institute of Electrical and Electronics Engineers and The Open
.\" Group, have given us permission to reprint portions of their
.\" documentation.
.\"
.\" In the following statement, the phrase ``this text'' refers to portions
.\" of the system documentation.
.\"
.\" Portions of this text are reprinted and reproduced in electronic form
.\" in the SunOS Reference Manual, from IEEE Std 1003.1, 2004 Edition,
.\" Standard for Information Technology -- Portable Operating System
.\" Interface (POSIX), The Open Group Base Specifications Issue 6,
.\" Copyright (C) 2001-2004 by the Institute of Electrical and Electronics
.\" Engineers, Inc and The Open Group. In the event of any discrepancy
.\" between these versions and the original IEEE and The Open Group
.\" Standard, the original IEEE and The Open Group Standard is the referee
.\" document. The original Standard can be obtained online at
.\" http://www.opengroup.org/unix/online.html.
.\"
.\" This notice shall appear on any product containing this material.
.\"
.\" The contents of this file are subject to the terms of the
.\" Common Development and Distribution License (the "License").
.\" You may not use this file except in compliance with the License.
.\"
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
.\" or http://www.opensolaris.org/os/licensing.
.\" See the License for the specific language governing permissions
.\" and limitations under the License.
.\"
.\" When distributing Covered Code, include this CDDL HEADER in each
.\" file and include the License file at usr/src/OPENSOLARIS.LICENSE.
.\" If applicable, add the following below this CDDL HEADER, with the
.\" fields enclosed by brackets "[]" replaced with your own identifying
.\" information: Portions Copyright [yyyy] [name of copyright owner]
.\"
.\"
.\" Copyright 1989 AT&T
.\" Portions Copyright (c) 1992, X/Open Company Limited All Rights Reserved
.\" Copyright (c) 2008, Sun Microsystems, Inc. All Rights Reserved
.\"
.TH MAIL 1 "Jul 24, 2008"
.SH NAME
mail, rmail \- read mail or send mail to users
.SH SYNOPSIS
.SS "Sending Mail"
.LP
.nf
\fBmail\fR [\fB-tw\fR] [\fB-m\fR \fImessage_type\fR] \fIrecipient\fR...
.fi
.LP
.nf
\fBrmail\fR [\fB-tw\fR] [\fB-m\fR \fImessage_type\fR] \fIrecipient\fR...
.fi
.SS "Reading Mail"
.LP
.nf
\fBmail\fR [\fB-ehpPqr\fR] [\fB-f\fR \fIfile\fR]
.fi
.SS "Debugging"
.LP
.nf
\fBmail\fR [\fB-x\fR \fIdebug_level\fR] [\fIother_mail_options\fR] \fIrecipient\fR...
.fi
.SH DESCRIPTION
.sp
.LP
A \fIrecipient\fR is usually a domain style address
("\fIuser\fR@\fImachine\fR") or a user name recognized by \fBlogin\fR(1). When
\fIrecipient\fRs are named, \fBmail\fR assumes a message is being sent. It
reads from the standard input up to an end-of-file (Control-d) or, if reading
from a terminal device, until it reads a line consisting of just a period. When
either of those indicators is received, \fBmail\fR adds the \fIletter\fR to the
\fImailfile\fR for each \fIrecipient\fR.
.sp
.LP
A \fIletter\fR is composed of some \fIheader lines\fR followed by a blank line
followed by the \fImessage content\fR. The \fIheader lines\fR section of the
letter consists of one or more UNIX postmarks:
.sp
.in +2
.nf
\fBFrom\fR \fIsender date_and_time\fR [\fBremote from\fR \fIremote_system_name\fR]
.fi
.in -2
.sp
.sp
.LP
followed by one or more standardized message header lines of the form:
.sp
.in +2
.nf
\fIkeyword-name\fR\fB:\fR [\fIprintable text\fR]
.fi
.in -2
.sp
.sp
.LP
where \fIkeyword-name\fR is comprised of any printable, non-whitespace
characters other than colon (`\fB:\fR'). A \fBMIME-version:\fR header line
indicates that the message is formatted as described in RFC 2045. A
\fBContent-Length:\fR header line, indicating the number of bytes in the
\fImessage content\fR, is always present unless the letter consists of only
header lines with no message content. A \fBContent-Type:\fR header line that
describes the type of the \fImessage content\fR (such as text/plain,
application/octet-stream, and so on) is also present, unless the letter
consists of only header lines with no message content. Header lines may be
continued on the following line if that line starts with white space.
.SH OPTIONS
.SS "Sending Mail"
.sp
.LP
The following command-line arguments affect sending mail:
.sp
.ne 2
.na
\fB\fB-m\fR \fImessage_type\fR\fR
.ad
.RS 19n
A \fBMessage-Type:\fR line is added to the message header with the value of
\fImessage_type\fR.
.RE
.sp
.ne 2
.na
\fB\fB-t\fR\fR
.ad
.RS 19n
A \fBTo:\fR line is added to the message header for each of the intended
\fIrecipient\fRs.
.RE
.sp
.ne 2
.na
\fB\fB-w\fR\fR
.ad
.RS 19n
A letter is sent to a remote recipient without waiting for the completion of
the remote transfer program.
.RE
.sp
.LP
If a letter is found to be undeliverable, it is returned to the sender with
diagnostics that indicate the location and nature of the failure. If \fBmail\fR
is interrupted during input, the message is saved in the file \fBdead.letter\fR
to allow editing and resending. \fBdead.letter\fR is always appended to, thus
preserving any previous contents. The initial attempt to append to (or create)
\fBdead.letter\fR is in the current directory. If this fails, \fBdead.letter\fR
is appended to (or created in) the user's login directory. If the second
attempt also fails, no \fBdead.letter\fR processing is done.
.sp
.LP
\fBrmail\fR only permits the sending of mail; \fBuucp\fR(1C) uses \fBrmail\fR
as a security precaution. Any application programs that generate mail messages
should be sure to invoke \fBrmail\fR rather than \fBmail\fR for message
transport and/or delivery.
.sp
.LP
If the local system has the Basic Networking Utilities installed, mail can be
sent to a recipient on a remote system. There are numerous ways to address mail
to recipients on remote systems depending on the transport mechanisms available
to the local system. The two most prevalent addressing schemes are Domain-style
and UUCP-style.
.sp
.ne 2
.na
\fBDomain-style addressing\fR
.ad
.RS 27n
Remote recipients are specified by appending an `\fB@\fR' and domain (and
possibly sub-domain) information to the recipient name (such as
\fBuser@sf.att.com\fR). (The local system administrator should be consulted for
details on which addressing conventions are available on the local system.)
.RE
.sp
.ne 2
.na
\fBUUCP-style addressing\fR
.ad
.RS 27n
Remote recipients are specified by prefixing the recipient name with the remote
system name and an exclamation point, such as \fBsysa!user.\fR If \fBcsh\fR(1)
is the default shell, \fBsysa\e!user\fR should be used. A series of system
names separated by exclamation points can be used to direct a letter through an
extended network (such as \fBsysa!sysb!sysc!user\fR or
\fBsysa\e!sysb\e!sysc\e!user\fR).
.RE
.SS "Reading Mail"
.sp
.LP
The following command-line arguments affect reading mail:
.sp
.ne 2
.na
\fB\fB-e\fR\fR
.ad
.RS 11n
Test for the presence of mail. \fBmail\fR prints nothing.
.sp
An exit status of \fB0\fR is returned if the user has mail. Otherwise, an exit
status of \fB1\fR is returned.
.RE
.sp
.ne 2
.na
\fB\fB-E\fR\fR
.ad
.RS 11n
Similar to \fB-e\fR, but tests only for the presence of \fBnew\fR mail.
.sp
An exit status of \fB0\fR is returned if the user has new mail
to read, an exit status of \fB1\fR is returned if the user has no
mail, or an exit status of \fB2\fR is returned if the user has mail
which has already been read.
.RE
.sp
.ne 2
.na
\fB\fB-h\fR\fR
.ad
.RS 11n
A window of headers are initially displayed rather than the latest message. The
display is followed by the \fB?\fR prompt.
.RE
.sp
.ne 2
.na
\fB\fB-p\fR\fR
.ad
.RS 11n
All messages are printed without prompting for disposition.
.RE
.sp
.ne 2
.na
\fB\fB-P\fR\fR
.ad
.RS 11n
All messages are printed with \fIall\fR header lines displayed, rather than the
default selective header line display.
.RE
.sp
.ne 2
.na
\fB\fB-q\fR\fR
.ad
.RS 11n
\fBmail\fR terminates after interrupts. Normally an interrupt causes only the
termination of the message being printed.
.RE
.sp
.ne 2
.na
\fB\fB-r\fR\fR
.ad
.RS 11n
Messages are printed in first-in, first-out order.
.RE
.sp
.ne 2
.na
\fB\fB-f\fR \fIfile\fR\fR
.ad
.RS 11n
\fBmail\fR uses \fIfile\fR (such as \fBmbox\fR) instead of the default
\fImailfile\fR.
.RE
.sp
.LP
\fBmail\fR, unless otherwise influenced by command-line arguments, prints a
user's mail messages in last-in, first-out order. The default mode for printing
messages is to display only those header lines of immediate interest. These
include, but are not limited to, the UNIX \fBFrom\fR and \fB>From\fR postmarks,
\fBFrom:\fR, \fBDate:\fR, \fBSubject:\fR, and \fBContent-Length:\fR header
lines, and any recipient header lines such as \fBTo:\fR, \fBCc:\fR, \fBBcc:\fR,
and so forth. After the header lines have been displayed, \fBmail\fR displays
the contents (body) of the message only if it contains no unprintable
characters. Otherwise, \fBmail\fR issues a warning statement about the message
having binary content and \fBnot\fR display the content. This can be overridden
by means of the \fBp\fR command.
.sp
.LP
For each message, the user is prompted with a \fB?\fR and a line is read from
the standard input. The following commands are available to determine the
disposition of the message:
.sp
.ne 2
.na
\fB\fB#\fR\fR
.ad
.RS 22n
Print the number of the current message.
.RE
.sp
.ne 2
.na
\fB\fB\(mi\fR\fR
.ad
.RS 22n
Print previous message.
.RE
.sp
.ne 2
.na
\fB<new-line>,\fB+\fR, or \fBn\fR\fR
.ad
.RS 22n
Print the next message.
.RE
.sp
.ne 2
.na
\fB\fB!\fR\fIcommand\fR\fR
.ad
.RS 22n
Escape to the shell to do \fIcommand\fR.
.RE
.sp
.ne 2
.na
\fB\fBa\fR\fR
.ad
.RS 22n
Print message that arrived during the \fBmail\fR session.
.RE
.sp
.ne 2
.na
\fB\fBd\fR, or \fBdp\fR\fR
.ad
.RS 22n
Delete the current message and print the next message.
.RE
.sp
.ne 2
.na
\fB\fBd\fR \fIn\fR\fR
.ad
.RS 22n
Delete message number \fIn\fR. Do not go on to next message.
.RE
.sp
.ne 2
.na
\fB\fBdq\fR\fR
.ad
.RS 22n
Delete message and quit \fBmail\fR.
.RE
.sp
.ne 2
.na
\fB\fBh\fR\fR
.ad
.RS 22n
Display a window of headers around current message.
.RE
.sp
.ne 2
.na
\fB\fBh\fR\fIn\fR\fR
.ad
.RS 22n
Display a window of headers around message number \fIn\fR.
.RE
.sp
.ne 2
.na
\fB\fBh a\fR\fR
.ad
.RS 22n
Display headers of all messages in the user's \fImailfile\fR.
.RE
.sp
.ne 2
.na
\fB\fBh d\fR\fR
.ad
.RS 22n
Display headers of messages scheduled for deletion.
.RE
.sp
.ne 2
.na
\fB\fBm\fR [ \fIpersons\fR ]\fR
.ad
.RS 22n
Mail (and delete) the current message to the named \fIpersons\fR.
.RE
.sp
.ne 2
.na
\fB\fIn\fR\fR
.ad
.RS 22n
Print message number \fIn\fR.
.RE
.sp
.ne 2
.na
\fB\fBp\fR\fR
.ad
.RS 22n
Print current message again, overriding any indications of binary (that is,
unprintable) content.
.RE
.sp
.ne 2
.na
\fB\fBP\fR\fR
.ad
.RS 22n
Override default brief mode and print current message again, displaying all
header lines.
.RE
.sp
.ne 2
.na
\fB\fBq\fR, or Control-d\fR
.ad
.RS 22n
Put undeleted mail back in the \fImailfile\fR and quit \fBmail\fR.
.RE
.sp
.ne 2
.na
\fB\fBr\fR [ \fIusers\fR ]\fR
.ad
.RS 22n
Reply to the sender, and other \fIusers\fR, then delete the message.
.RE
.sp
.ne 2
.na
\fB\fBs\fR [ \fIfiles\fR ]\fR
.ad
.RS 22n
Save message in the named \fIfiles\fR (\fBmbox\fR is default) and delete the
message.
.RE
.sp
.ne 2
.na
\fB\fBu\fR [ \fIn\fR ]\fR
.ad
.RS 22n
Undelete message number \fIn\fR (default is last read).
.RE
.sp
.ne 2
.na
\fB\fBw\fR [ \fIfiles\fR ]\fR
.ad
.RS 22n
Save message contents, without any header lines, in the named \fIfiles\fR
(\fBmbox\fR is default) and delete the message.
.RE
.sp
.ne 2
.na
\fB\fBx\fR\fR
.ad
.RS 22n
Put all mail back in the \fImailfile\fR unchanged and exit \fBmail\fR.
.RE
.sp
.ne 2
.na
\fB\fBy\fR [ \fIfiles\fR ]\fR
.ad
.RS 22n
Same as \fB-w\fR option.
.RE
.sp
.ne 2
.na
\fB\fB?\fR\fR
.ad
.RS 22n
Print a command summary.
.RE
.sp
.LP
When a user logs in, the presence of mail, if any, is usually indicated. Also,
notification is made if new mail arrives while using \fBmail\fR.
.sp
.LP
The permissions of \fImailfile\fR can be manipulated using \fBchmod\fR(1) in
two ways to alter the function of \fBmail\fR. The other permissions of the file
can be read-write (\fB0666\fR), read-only (\fB0664\fR), or neither read nor
write (\fB0660\fR) to allow different levels of privacy. If changed to other
than the default (mode \fB0660\fR), the file is preserved even when empty to
perpetuate the desired permissions. (The administrator can override this file
preservation using the \fBDEL_EMPTY_MAILFILE\fR option of \fBmailcnfg\fR.)
.sp
.LP
The group \fBID\fR of the mailfile must be \fBmail\fR to allow new messages to
be delivered, and the mailfile must be writable by group \fBmail\fR.
.SS "Debugging"
.sp
.LP
The following command-line arguments cause \fBmail\fR to provide debugging
information:
.sp
.ne 2
.na
\fB\fB-x\fR \fIdebug_level\fR\fR
.ad
.RS 18n
\fBmail\fR creates a trace file containing debugging information.
.RE
.sp
.LP
The \fB-x\fR option causes \fBmail\fR to create a file named
\fB/tmp/MLDBG\fR\fIprocess_id\fR that contains debugging information relating
to how \fBmail\fR processed the current message. The absolute value of
\fIdebug_level\fR controls the verboseness of the debug information. \fB0\fR
implies no debugging. If \fIdebug_level\fR is greater than \fB0\fR, the debug
file is retained \fIonly\fR if \fBmail\fR encountered some problem while
processing the message. If \fIdebug_level\fR is less than \fB0\fR, the debug
file is always be retained. The \fIdebug_level\fR specified via \fB-x\fR
overrides any specification of \fBDEBUG\fR in \fB/etc/mail/mailcnfg\fR. The
information provided by the \fB-x\fR option is esoteric and is probably only
useful to system administrators.
.SS "Delivery Notification"
.sp
.LP
Several forms of notification are available for mail by including one of the
following lines in the message header.
.sp
.LP
\fBTransport-Options:\fR [ \fB/\fR\fIoptions\fR ]
.sp
.LP
\fBDefault-Options:\fR [ \fB/\fR\fIoptions\fR ]
.sp
.LP
\fB>To:\fR \fIrecipient\fR [ \fB/\fR\fIoptions\fR ]
.sp
.LP
Where the "/\fIoptions\fR" can be one or more of the following:
.sp
.ne 2
.na
\fB\fB/delivery\fR\fR
.ad
.RS 15n
Inform the sender that the message was successfully delivered to the
\fIrecipient\fR's mailbox.
.RE
.sp
.ne 2
.na
\fB\fB/nodelivery\fR\fR
.ad
.RS 15n
Do not inform the sender of successful deliveries.
.RE
.sp
.ne 2
.na
\fB\fB/ignore\fR\fR
.ad
.RS 15n
Do not inform the sender of failed deliveries.
.RE
.sp
.ne 2
.na
\fB\fB/return\fR\fR
.ad
.RS 15n
Inform the sender if mail delivery fails. Return the failed message to the
sender.
.RE
.sp
.ne 2
.na
\fB\fB/report\fR\fR
.ad
.RS 15n
Same as \fB/return\fR except that the original message is not returned.
.RE
.sp
.LP
The default is \fB/nodelivery/return\fR. If contradictory options are used, the
first is recognized and later, conflicting, terms are ignored.
.SH OPERANDS
.sp
.LP
The following operand is supported for sending mail:
.sp
.ne 2
.na
\fB\fIrecipient\fR\fR
.ad
.RS 13n
A domain style address ("\fIuser\fR@\fImachine\fR") or user login name
recognized by \fBlogin\fR(1).
.RE
.SH USAGE
.sp
.LP
See \fBlargefile\fR(5) for the description of the behavior of \fBmail\fR and
\fBrmail\fR when encountering files greater than or equal to 2 Gbyte ( 2^31
bytes).
.SH ENVIRONMENT VARIABLES
.sp
.LP
See \fBenviron\fR(5) for descriptions of the following environment variables
that affect the execution of \fBmail\fR: \fBLC_CTYPE\fR, \fBLC_MESSAGES\fR, and
\fBNLSPATH\fR.
.sp
.ne 2
.na
\fB\fBTZ\fR\fR
.ad
.RS 6n
Determine the timezone used with date and time strings.
.RE
.SH EXIT STATUS
.sp
.LP
The following exit values are returned:
.sp
.ne 2
.na
\fB\fB0\fR\fR
.ad
.RS 6n
Successful completion when the user had mail.
.RE
.sp
.ne 2
.na
\fB\fB1\fR\fR
.ad
.RS 6n
The user had no mail or an initialization error occurred.
.RE
.sp
.ne 2
.na
\fB\fB>1\fR\fR
.ad
.RS 6n
An error occurred after initialization.
.RE
.SH FILES
.sp
.ne 2
.na
\fB\fBdead.letter\fR\fR
.ad
.RS 20n
unmailable text
.RE
.sp
.ne 2
.na
\fB\fB/etc/passwd\fR\fR
.ad
.RS 20n
to identify sender and locate \fIrecipient\fRs
.RE
.sp
.ne 2
.na
\fB\fB$HOME/mbox\fR\fR
.ad
.RS 20n
saved mail
.RE
.sp
.ne 2
.na
\fB\fB$MAIL\fR\fR
.ad
.RS 20n
variable containing path name of \fImailfile\fR
.RE
.sp
.ne 2
.na
\fB\fB/tmp/MLDBG\fR*\fR
.ad
.RS 20n
debug trace file
.RE
.sp
.ne 2
.na
\fB\fB/var/mail/*.lock\fR\fR
.ad
.RS 20n
lock for mail directory
.RE
.sp
.ne 2
.na
\fB\fB/var/mail/:saved\fR\fR
.ad
.RS 20n
directory for holding temp files to prevent loss of data in the event of a
system crash
.RE
.sp
.ne 2
.na
\fB\fB/var/mail/\fIuser\fR\fR\fR
.ad
.RS 20n
incoming mail for \fIuser\fR; that is, the \fImailfile\fR
.RE
.sp
.ne 2
.na
\fB\fBvar/tmp/ma\fR*\fR
.ad
.RS 20n
temporary file
.RE
.SH SEE ALSO
.sp
.LP
\fBchmod\fR(1), \fBcsh\fR(1), \fBlogin\fR(1), \fBmailx\fR(1), \fBuucp\fR(1C),
\fBuuencode\fR(1C), \fBvacation\fR(1), \fBwrite\fR(1), \fBattributes\fR(5),
\fBenviron\fR(5), \fBlargefile\fR(5)
.sp
.LP
\fISolaris Advanced User\&'s Guide\fR
.SH NOTES
.sp
.LP
The interpretation and resulting action taken because of the header lines
described in the Delivery Notifications section only occur if this version of
\fBmail\fR is installed on the system where the delivery (or failure) happens.
Earlier versions of \fBmail\fR might not support any types of delivery
notification.
.sp
.LP
Conditions sometimes result in a failure to remove a lock file.
.sp
.LP
After an interrupt, the next message might not be printed. Printing can be
forced by typing a \fBp\fR.
|