123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- .TH MARSHAL 1
- .SH NAME
- marshal \- formatting and sending mail
- .SH SYNOPSIS
- .PP
- .B upas/marshal
- [
- .B -t
- .I mime-type
- ]
- [
- .B -[aA]
- .I attachment
- ]
- [
- .B -s
- .I subject
- ]
- [
- .B -C
- .I copyaddr
- ]
- [
- .B -R
- .I reply-msg
- [
- .B -nrx#
- ]
- [
- .I mailaddr ...
- ]
- .SH DESCRIPTION
- .I Marshal
- builds a mail message from standard input and passes it
- for transmission or delivery to
- .BI /mail/box/ username /pipefrom
- if it exists, otherwise to
- .BR /bin/upas/send .
- The message format is both RFC 822 and
- MIME conformant, so
- .I marshal
- adds any required headers not already in the message.
- Before adding any necessary header lines, it prepends
- the contents of
- .BI /mail/box/ username /headers\f1.
- This allows the addition of personal headers like
- .B From:
- lines with a full name or a different
- return address.
- Command line options direct marshal to add a subject line
- and append attachments. The arguments to
- .I marshal
- are the addresses of the recipients.
- .PP
- When running in a
- .IR rio (1)
- window,
- .I marshal
- automatically puts the window into hold mode (see
- .IR rio (1));
- this means that the message can be edited freely,
- because nothing will be sent to
- .I marshal
- until the ESC key is hit to exit hold mode.
- .PP
- The options are:
- .TF "-a file"
- .TP
- .BI -a file
- directs
- .I marshal
- to append
- .I file
- as a mime attachment.
- Unless explicitly specified by the
- .B -t
- option, the type of the attachment is determined
- by running the
- .IR file (1)
- command.
- .TP
- .BI -A file
- is like
- .B -a
- but the message disposition is marked as
- .I inline
- directing any mail reader to display the attachment
- (if it can) when the mail message is read.
- .TP
- .BI -t type
- sets the content type for the attachments from
- all subsequent
- .B -a
- and
- .B -A
- options.
- .TP
- .BI -s subject
- adds a
- .B Subject:
- header line to the message if one does not
- already exist.
- .TP
- .BI -C copyaddr
- adds a
- .B Cc:
- header with
- .I copyaddr
- and also adds
- .I copyaddr
- as a recipient.
- .TP
- .BI -R replymsg
- tells marshal what message this one is in reply to.
- .I Replymsg
- is an
- .IR upas/fs (1)
- directory containing the message.
- .I Marshal
- uses any message id in this message in its
- .B In-Reply-To
- field. It also passes the directory to
- .BI /mail/box/ username /pipefrom
- in the
- .B replymsg
- environment variable. Thus,
- .B pipefrom
- can alter the message to somehow match
- the reply to the message it is replying to.
- .TP
- .BI -n
- intentionally no standard input
- .TP
- .B -#xr
- are all passed as command line options to the
- .I send
- that
- .I marshal
- invokes.
- .TP
- .BI -C recipient
- specifies that a copy of the mail should also be sent to
- .I recipient
- and that
- .I recipient
- should be included in a
- .B CC:
- header line.
- .PD
- .PP
- .I Marshal
- also expands any user mail aliases contained in
- .BI /mail/box/ username /names.
- The format of the alias file is the same as that
- for system aliases, see
- .IR aliasmail (8).
- .PP
- .I Marshal
- uses the login name as the reply address. This
- can be overriden using the environment variable
- .BR upasname .
- It's value will become both the envelope
- and
- .B From:
- mailbox name. For example:
- .EX
- upasname=natasha@kremvax.com upas/mail boris@squirrel.com
- .EE
- .SH FILES
- .TP
- .B /mail/box/*/dead.letter
- .SH SOURCE
- .TP
- .B /sys/src/cmd/upas/marshal
- .SH "SEE ALSO"
- .IR aliasmail (8),
- .IR faces (1),
- .IR filter (1),
- .IR mail (1),
- .IR mlmgr (1),
- .IR nedmail (1),
- .IR qer (8),
- .IR rewrite (6),
- .IR send (8),
- .IR smtp (8),
- .IR upasfs (4)
|