Hi all,
I'm fairly new to linux/unix administartion and I'm trying to set-up the ability to read my mail (!). This weekend I successfully figured out how to update the MX records using zoneedit.com and have got xinetd and the sendmail daemon running. Email is coming in and I am able to log in to my server and check and send email via pine.
I'm using RH9 and here are various parts of (what I think) are the relevant files:
/etc/hosts.allow
# I'm trying all these flavors because I
# don't know which one works...
in.xinetd: .austin.rr.com .tx.swbell.net
in.smtpd: .austin.rr.com .tx.swbell.net
in.sendmail: .austin.rr.com .tx.swbell.net
pop3: .austin.rr.com .tx.swbell.net
ipop3: .austin.rr.com .tx.swbell.net
ipop3d: .austin.rr.com .tx.swbell.net
/etc/xinetd.d/ipop3
service pop3
{
socket_type = stream
wait = no
user = root
server = /usr/sbin/sendmail -f
tracer@axiomfire.com -t
server_args = -t
log_on_success += PID HOST DURATION USERID
log_on_failure += PID HOST USERID
only_from = 0.0.0.0
disable = no
}
/etc/mail/sendmail.mc
# a few dozen lines down...
dnl #
dnl DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl
dnl #
Also, with my current setup, I can't send mail with an external client to anyone but a user of the system. I get the message 'Relaying denied'.
Any help to get me on my feet with system administration would be very helpful. I have scoured man pages and googled many a series of keywords trying to find the answer. I know I must be missing something really simple, but crucial.
My guess might be that sendmail doesn't function as a pop3 daemon? I saw something about ipop3d, but I tried to run it and still had no luck.
Thanks a lot!
--Tracy