[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

/usr/sbin/sendmail specification proposal, draft 3



Minor changes.

If anything doesn't sound right, please test it against your favorite
sendmail or sendmail clone (I only have access to running versions of
sendmail and exim).  We should be careful to only specify options that
work (or get ignored in a safe way) for all common agents used as
/usr/sbin/sendmail.

We may want to specify how unsupported options should or will be handled
by sendmail clones.

Changes:

  *  -f flag fix
  *  added exit status

------- start of cut text --------------
NAME
     /usr/sbin/sendmail - an electronic mail transport agent

SYNOPSIS
     sendmail [flags] [address ...]

DESCRIPTION
     This program sends an email message to one or more recipients,
     routing the message as necessary.  This is not intended as a user
     interface routine.

     With no flags, sendmail reads its standard input up to an
     end-of-file or a line consisting only of a single dot and sends a
     copy of the message found there to all of the addresses listed.
     It determines the network(s) to use based on the syntax and
     contents of the addresses.

     Some agents allow aliasing on the local system to be prevented
     by preceding the address with a backslash.

     The format of messages must be as defined in RFC 822.

OPTIONS

     -bm       Read mail from standard and deliver to the recipient
               addresses.  This is the default mode of operation.

     -bp       List information about messages currently in the input
               mail queue.

     -bs       Use the SMTP protocol as described in RFC 821.  (Read
               SMTP commands on standard input and write SMTP responses
               on standard output.)

     -F fullname
               Explicitly set the full name of the sender for incoming
               mail unless the message already contains a From: message
               header.

               If the user running sendmail is not sufficiently trusted,
               then the actual sender may be indicated in the message,
               depending on the behavior of the agent.

     -f name   
               Explicitly set the envelope sender address for incoming
               mail.   If there is no From: header, the address specified
               in the From: header will also be set.

               If the user running sendmail is not sufficiently trusted,
               then the actual sender will be indicated in the message.

     -i        Ignore dots alone on lines by themselves in incoming
               messages.  This option is ignored when -bs is used.
 
     -odb      If supported, deliver any mail in background.  Otherwise,
               this option is ignored.

     -odf      If supported, deliver any mail in foreground.  Otherwise,
               this option is ignored.

     -oem or -em
               Mail errors back to the sender (default).

     -oep or -ep
               Write errors to the standard error output.

     -oeq or -eq
               Do not send notification of errors to the sender.  This
               only works for mail delivered locally.

     -oew or -ew
               Write errors to the sender's terminal using the write(1)
               command, if he is logged in.  Otherwise, mail errors back
               to the sender.  If not supported, report errors in the
               same manner as -oem.

     -oi       Same as -i.

     -om       This option means 'me too', indicating that the sender of
               a message should receive a copy of the message if the
               sender appears in an alias expansion.  Ignored if aliases
               are not supported.

     -t        Read the message to obtain recipients from the To:, Cc:,
               and Bcc: headers in the message instead of from the
               command arguments.  If a Bcc: header is present, it is
               removed from the message unless there is no To: or Cc:
               header, in which case a Bcc: header with no data is
               created, in accordance with RFC 822.

               If there are any arguments, they specify addresses to
               which the message is not to be delivered.  That is, the
               argument addresses are removed from the recipients list
               obtained from the headers.  Note: some agents implement
               this behavior in reverse, adding addresses instead of
               removing them.  Others may disallow addresses in
               argument list.  Therefore, applications should not put
               addresses in the argument list if -t is used.

               This option is sometimes ignored when not in -bm mode
               (the default).

     -v        Be more verbose.  Additional -v options may make the
               software increasingly verbose.

EXIT STATUS
     0         Successful completion on all addresses.  This does not
               indicate successful delivery.
     >0        There was an error.
------- end ----------------------------


Reply to: