User Agent | Sys prefs | User prefs | Mime | POP | IMAP | SMTP |
---|---|---|---|---|---|---|
/bin/mail | - | - | ||||
/usr/ucb/mail | Mail.rc | .mailrc | ||||
mh | - | .mh_profile .mh_delivery | * | * | * | |
pine | pine.conf | .pinerc | * | * | * | * |
elm | /lib/elm.rc | .elm/elmrc | * | * | * | |
mutt | Muttrc | .muttrc | * | * | * | |
Netscape | - | - | * | * | * | * |
Eudora | - | - | * | * | * | * |
Pegasus | - | - | * | * | * | * |
Outlook Express | - | - | * | * | * | * |
/bin/mail
,
/usr/ucb/mail
or any other MUA as obviously featureless
as the table above shows.
sendmail
is still
the most popular MTA, though Postfix
and
qmail
have been gaining ground in recent years.
/bin/mail
, although many machines use
mail.local
. Of more value is an MDA like
procmail
that can filter messages by content
and place them in specific mail folders for AAs that
supot that capability.
mbox
format stores all messages in a single file.
The mh
style stores each message in a separate
file.
Back in the old days, other addressing techniques were used including UUCP (with lots of exclamation points) and several types of route-based addresses using at-signs or percent-signs. Some of sendmail's complexity deals with understanding these completely outmoded addresses.user@host.domain
Received
line that
shows which machine received the message, from which
machine it was received, and when. These are added
at the top, so the most recent one is first.
courier
. Courier also provides an MTA, however,
this is not nearly as popular as other discussed below.
Sendmail is discussed on ppg. ???-??? of Nemeth and Postfix is discussed on ppg. ???-???. The volume of reporting is dictated by the complexity of administering each system. If you want to learn about sendmail, you are welcome to do so on your own.
Furthermore, we used our Rocks/Sux meter (googling for "XXX rocks", "XXX rox", "XXX sucks" and "XXX sux") to evaluate MTAs.
sendmail | postfix | qmail | exim |
---|---|---|---|
26/366 (0.1) | 233/81 (2.9) | 285*/111 (2.6) | 39/38 (1) |
qmail rocks -qmailrocks -"site qmail rocks" -"qmail rocks site"If not for this change, qmail's rox/sux index would be 344/111 (3.1).
From george@whitehouse.gov Fri Oct 19 09:43:29 2001 Return-Path: Delivered-To: jnw@imap.cise.ufl.edu Received: from mail.cise.ufl.edu (beach.cise.ufl.edu [128.227.205.211]) by imap.cise.ufl.edu (Postfix) with ESMTP id 725CA20F30 for ; Fri, 19 Oct 2001 09:43:29 -0400 (EDT) Received: by mail.cise.ufl.edu (Postfix) id 4FF01DCCB; Fri, 19 Oct 2001 09:43:29 -0400 (EDT) Delivered-To: jnw@cise.ufl.edu Received: from merlin.unix-ippd.cise.ufl.edu (merlin.unix-ippd.cise.ufl.edu [10. 227.170.81]) by mail.cise.ufl.edu (Postfix) with ESMTP id CC6F8D809 for ; Fri, 19 Oct 2001 09:43:28 -0400 (EDT) Received: from hawk.cise.ufl.edu (hawk.cise.ufl.edu [128.227.35.120]) by merlin.unix-ippd.cise.ufl.edu (AIX4.3/8.9.3/8.9.3) with SMTP id JAA02 698 for jnw@cise.ufl.edu; Fri, 19 Oct 2001 09:38:11 -0500 Date: Fri, 19 Oct 2001 09:38:11 -0500 From: george@whitehouse.gov Message-Id: <200110191438.JAA02698@merlin.unix-ippd.cise.ufl.edu> To: undisclosed-recipients:; Hi Joe. Just checking to see how operation enduring freedom is going. Later. Dubya
mail.cise.ufl.edu
from hawk.cise.ufl.edu
.
It was created by talking directly to port 25 on an AIX
host. Those machines like many had a sendmail SMTP server
running on port 25.
The SMTP protocol is very easy to learn and use. It is incredibly
easy to forge mail, and you should *never* forge mail to any *except
yourself*. Doing otherwise is fraud and can be considered identity
theft and can be punishable by law.
he mail above was created by specifying the following sequence of commands:
HELO hawk.cise.ufl.edu MAIL From: george@whitehouse.gov RCPT To: jnw@cise.ufl.edu DATA etc., etc. . QUIT