Mailing List
Home
Forum Home
Linux - General Red Hat Linux discussion list
Installation - Getting started with Red Hat Linux
Enterprise Linux 3 - Discussion of Red Hat Enterprise Linux 3 (Taroon)
Red Hat Linux 9 - Discussion of Red Hat Linux 9 (Shrike)
Red Hat Linux 7.2 - Discussion of Red Hat Linux 7.2 (Enigma)
Red Hat Linux 7.3 - Discussion of Red Hat Linux 7.3 (Valhalla)
Apache Web Server
Oracle database, Microsoft SQL server ...
Subjects
application/x mplayer2 plugin
RPM error: db4 error(16) from dbenv >remove: Device or resource
   busy
Command stream end of file while reading
X Windows problem (xauth)
Upgrading openoffice 1 1 rpm
FTP: connection refused
FTP: connection refused
mount: /dev/cdrom: is not a valid block device
Dell Precision 650, RedHat 9, no sound
how to trace the cause resulting in the crash of bind server
Virus on the list
UNINSTALL RPM MYSQL
usb pen drives: mounting as a user
broadcom network interface
make mrproper
sendmail configuration on redhat
Couldn 't open PID file /var/run/named/named pid Permission denied
Promise 378 controller
kernel 2 6 and /dev/sound/mixer not found
Problem using up2date
mrtg step by step howto/configuration for a newbie?
Compiling and Installing Kernel 2 6
Can 't locate module ppp0, can 't locate module ppp compress 21
HOW I CAN MAKE BOOTABLE FLOPPY DISKET
Lotus Notes under Wine
/etc/security/limits conf question
Intel E/1000 driver
Command stream end of file while reading
rpm database corrupt
qla2300 modules
 
sendmail configuration on redhat

sendmail configuration on redhat

2003-01-17       - By James P. Roberts

 Back
Reply:     1     2     3     4     5     6     7     8     9     10  

> Hi Jim
>
> For my own clarification , is there a difference between Handling POP3
> and SMTP requests , and actually BEING a POP3 / SMTP server ?

Not really.  Pretty much the definition of a "server," I should think.

>
> The reason I ask is that I have a whole bunch of Windows machines all
> connected to my Red Hat linux mail server running sendmail , and in
the
> Outlook express account settings , I have the incoming mail ( POP3 )
> and outgoing mail ( SMTP ) all pointing to the IP address of my mail
> server. If sendmail is not a POP server , how does it handle the
> incoming mail ?

A POP server handles delivery of locally stored ("already delivered to
the destination SMTP server") email, to a requesting client (such as
Outlook).  On Redhat, this service is typically provided by the ipop3d
daemon.  (More accurately, it is typically the xinetd daemon, which
listens on the POP3 port, and wakes up the ipop3d daemon as needed.)  It
can send emails to Outlook (for example), but does not accept emails
from Outlook.

Sendmail provides SMTP service, which means it can receive mail for
delivery to a local mailbox, relay email to another SMTP server, or send
outgoing mails to another SMTP server.  It can receive emails from
Outlook (for example), but it does not send emails to Outlook.

The magic of multiple servers running on one machine (same IP address)
is handled by "port numbers."  There are, if I recall correctly, some
64,000+ port numbers defined for each IP address (it's a built-in part
of the IP protocol).  This, incidentally, is a good lead in to a
discussion of firewalls, which typically block some of these ports, or
define rules for what kind of traffic is allowed on certain ports.
Really quite fascinating!

I hope this is helpful?

Jim