FORMAIL(1) | General Commands Manual | FORMAIL(1) |
formail - mail (re)formatter
formail [+skip] [-total]
[-bczfrktedqBY] [-p prefix] [-D maxlen
idcache] [-l folder] [-x headerfield]
[-X headerfield] [-a headerfield] [-A
headerfield] [-i headerfield] [-I
headerfield] [-u headerfield] [-U
headerfield] [-R oldfield newfield] [-n
[maxprocs ]] [-m minfields] [-s [command
[arg ...]]]
formail -v
formail is a filter that can be used to force mail into mailbox format, perform `From ' escaping, generate auto-replying headers, do simple header munging/extracting or split up a mailbox/digest/articles file. The mail/mailbox/article contents will be expected on stdin.
If formail is supposed to determine the sender of the mail, but is unable to find any, it will substitute `foo@bar'.
If formail is started without any command line options, it will
force any mail coming from stdin into mailbox format and will escape
all bogus `From ' lines with a `>'.
When renaming, removing, or extracting fields, partial fieldnames may be used to specify all fields that start with the specified value.
By default, when generating an auto-reply header procmail selects the envelope sender from the input message. This is correct for vacation messages and other automatic replies regarding the routing or delivery of the original message. If the sender is expecting a reply or the reply is being generated in response to the contents of the original message then the -t option should be used.
RFC822, the original standard governing the format of Internet mail messages, did not specify whether Resent header fields (those that begin with `Resent-', such as `Resent-From:') should be considered when generating a reply. Since then, the recommended usage of the Resent headers has evolved to consider them as purely informational and not for use when generating a reply. This has been codified in RFC2822, the new Internet Message Format standard, which states in part:
While formail now ignores Resent headers when generating header
replies, versions of formail prior to 3.14 gave such headers a high
precedence. If the old behavior is needed for established applications it
can be specified by calling formail with the option `-a Resent-' in addition
to the -r and -t options. This usage is deprecated and should not be used in
new applications.
To split up a digest one usually uses:
formail +1 -ds >>the_mailbox_of_your_choice
or
formail +1 -ds procmail
To remove all Received: fields from the header:
formail -I Received:
To remove all fields except From: and Subject: from the header:
formail -k -X From: -X Subject:
To supersede the Reply-To: field in a header you could use:
formail -i "Reply-To: foo@bar"
To convert a non-standard mailbox file into a standard mailbox file you can use:
formail -ds <old_mailbox >>new_mailbox
Or, if you have a very tolerant mailer:
formail -a Date: -ds <old_mailbox >>new_mailbox
To extract the header from a message:
formail -X ""
or
sed -e '/^$/ q'
To extract the body from a message:
formail -I ""
or
sed -e '1,/^$/ d'
mail(1), sendmail(8), procmail(1), sed(1), sh(1), RFC822, RFC2822, RFC1123
You can save yourself and others a lot of grief if you try to avoid using this autoreply feature on mails coming through mailinglists. Depending on the format of the incoming mail (which in turn depends on both the original sender's mail agent and the mailinglist setup) formail could decide to generate an autoreply header that replies to the list.
In the tradition of UN*X utilities, formail will do exactly what
you ask it to, even if it results in a non-RFC822 compliant message.
In particular, formail will let you generate header fields whose name ends
in a space instead of a colon. While this is correct for the leading `From '
line, that line is not a header field so much as the message separator for
the mbox mailbox format. Multiple occurrences of such a line or any other
colonless header field will be considered by many mail programs, including
formail itself, as the beginning of a new message. Others will consider the
message to be corrupt. Because of this, you should not use the -i
option with the `From ' line as the resulting renamed line, `Old-From ',
will probably not do what you want it to. If you want to save the original
`From ' line, rename it with the -R option to a legal header field
such as `X-From_:'.
When formail has to generate a leading `From ' line it normally will contain the current date. If formail is given the option `-a Date:', it will use the date from the `Date:' field in the header (if present). However, since formail copies it verbatim, the format will differ from that expected by most mail readers.
If formail is instructed to delete or rename the leading `From ' line, it will not automatically regenerate it as usual. To force formail to regenerate it in this case, include -a 'From '.
If formail is not called as the first program in a pipe and it is told to split up the input in several messages, then formail will not terminate until the program it receives the input from closes its output or terminates itself.
If formail is instructed to generate an autoreply mail, it will
never put more than one address in the `To:' field.
Formail is eight-bit clean.
When formail has to determine the sender's address, every RFC822 conforming mail address is allowed. Formail will always strip down the address to its minimal form (deleting excessive comments and whitespace).
The regular expression that is used to find `real' postmarks is:
"\n\nFrom [\t ]*[^\t\n ]+[\t ]+[^\n\t ]"
If a Content-Length: field is found in a header, formail will copy the number of specified bytes in the body verbatim before resuming the regular scanning for message boundaries (except when splitting digests or Berkeley mailbox format is assumed).
Any header lines immediately following the leading `From ' line
that start with `>From ' are considered to be a continuation of the `From
' line. If instructed to rename the `From ' line, formail will change each
leading `>' into a space, thereby transforming those lines into normal
RFC822 continuations.
Calling up formail with the -h or -? options will cause it to display a command-line help page.
This program is part of the procmail mail-processing-package (v3.23pre) available at http://www.procmail.org/ or ftp.procmail.org in pub/procmail/.
There exists a mailinglist for questions relating to any program in the procmail package:
<procmail-users@procmail.org>
for submitting questions/answers.
for subscription requests.
If you would like to stay informed about new versions and official patches
send a subscription request to
procmail-announce-request@procmail.org
Stephen R. van den Berg
<srb@cuci.nl>
Philip A. Guenther
<guenther@sendmail.com>
2001/08/04 | BuGless |