This is a discussion on Connecting to Sendmail within the Linux Networking forums, part of the Linux Forums category; I can't connect to sendmail from a client. Is there a firewall setting that should specifically open up a ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi Peter,
"Peter" <zpetero@netscape.net> wrote in message news:5f09c2fb.0311101340.326bc576@posting.google.c om... > I can't connect to sendmail from a client. Is there a firewall > setting that should specifically open up a port (110 I think) or am I > doing somethin wrong on the client. > Normaly sendmail runs on port 25. (smtp) you can try to connect to it using telnet: "telnet <IP-ADDRESS> 25" on the host self, you can use "netstat -a" to see if sendmail is running. Goodluck -Andree |
|
|||
|
"Peter" <zpetero@netscape.net> wrote in message
news:5f09c2fb.0311101340.326bc576@posting.google.c om > I can't connect to sendmail from a client. Is there a firewall > setting that should specifically open up a port (110 I think) or am I > doing somethin wrong on the client. > Server is RH 9.0 running sendmail... Pat attention to 1) at the following post: http://groups.google.com/groups?as_u...newsgroups.com Rebuild the sendmail.cf file and restart sendmail after making the change to sendmail.mc. Also, get familiar with the FAQs. Your question has been answered many, many, many times: http://www.sendmail.org/faq/section5.html#5.3.1.3 tony -- use hotmail com for any email replies -----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! -----== Over 100,000 Newsgroups - 19 Different Servers! =----- |
|
|||
|
On 10 Nov 2003 13:40:53 -0800, Peter <zpetero@netscape.net> wrote:
> I can't connect to sendmail from a client. Is there a firewall > setting that should specifically open up a port (110 I think) or am I > doing somethin wrong on the client. > > Server is RH 9.0 running sendmail... Port 110 is pop3, sending mail (smtp) is port 25 (/etc/services tells you what service each port is for). Sendmail does not do pop3 (you need a different daemon for that). Also by default sendmail in RH only listens on localhost (127.0.0.1), unless you modified that. Check 'netstat -atn' to see what IPs and ports are listening (0.0.0.0 means any IP). You might also need to check /etc/hosts.allow, hosts.deny and firewall settings. -- David Efflandt - All spam ignored http://www.de-srv.com/ |
|
|||
|
efflandt@xnet.com (David Efflandt) wrote in message news:<slrnbr0i54.4co.efflandt@typhoon.xnet.com>...
> On 10 Nov 2003 13:40:53 -0800, Peter <zpetero@netscape.net> wrote: > > I can't connect to sendmail from a client. Is there a firewall > > setting that should specifically open up a port (110 I think) or am I > > doing somethin wrong on the client. > > > > Server is RH 9.0 running sendmail... > > Port 110 is pop3, sending mail (smtp) is port 25 (/etc/services tells you > what service each port is for). Sendmail does not do pop3 (you need a > different daemon for that). Also by default sendmail in RH only listens > on localhost (127.0.0.1), unless you modified that. Check 'netstat -atn' > to see what IPs and ports are listening (0.0.0.0 means any IP). You might > also need to check /etc/hosts.allow, hosts.deny and firewall settings. I ran telnet localhost 110 and it says; Connected to localhost 127.0.0.1 +OK POP3 localhost.localdomain v2001.78rh server ready. So, POP seems to be working, Kmail is setup and I can send emails but when I reply from the client machine I can't receive emails back on the server. What should I try next? -Peter |
|
|||
|
zpetero@netscape.net (Peter) wrote in message news:<5f09c2fb.0311141911.77651a2e@posting.google. com>...
> efflandt@xnet.com (David Efflandt) wrote in message news:<slrnbr0i54.4co.efflandt@typhoon.xnet.com>... > > On 10 Nov 2003 13:40:53 -0800, Peter <zpetero@netscape.net> wrote: > > > I can't connect to sendmail from a client. Is there a firewall > > > setting that should specifically open up a port (110 I think) or am I > > > doing somethin wrong on the client. > > > > > > Server is RH 9.0 running sendmail... > > > > Port 110 is pop3, sending mail (smtp) is port 25 (/etc/services tells you > > what service each port is for). Sendmail does not do pop3 (you need a > > different daemon for that). Also by default sendmail in RH only listens > > on localhost (127.0.0.1), unless you modified that. Check 'netstat -atn' > > to see what IPs and ports are listening (0.0.0.0 means any IP). You might > > also need to check /etc/hosts.allow, hosts.deny and firewall settings. > > I ran telnet localhost 110 and it says; > > Connected to localhost 127.0.0.1 > +OK POP3 localhost.localdomain v2001.78rh server ready. > > So, POP seems to be working, Kmail is setup and I can send emails but > when I reply from the client machine I can't receive emails back on > the server. What should I try next? > > -Peter I can log on from a client machine via telnet on port 110 and check my messages, so POP is up and running by default on RH 9.0. I can send email from the server machine at command line and from KMail but when I reply it doesn't show up at the server. Why can't I receive incoming mail? -Peter |