Connecting to Sendmail

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 ...


Go Back   Usenet Forums > Linux Forums > Linux Networking

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-10-2003
Peter
 
Posts: n/a
Default Connecting to Sendmail

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...

Thanks
Peter
Reply With Quote
  #2 (permalink)  
Old 11-10-2003
Andree Toonk
 
Posts: n/a
Default Re: Connecting to Sendmail

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


Reply With Quote
  #3 (permalink)  
Old 11-10-2003
ynotssor
 
Posts: n/a
Default Re: Connecting to Sendmail

"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! =-----
Reply With Quote
  #4 (permalink)  
Old 11-11-2003
David Efflandt
 
Posts: n/a
Default Re: Connecting to Sendmail

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/
Reply With Quote
  #5 (permalink)  
Old 11-15-2003
Peter
 
Posts: n/a
Default Re: Connecting to Sendmail

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
Reply With Quote
  #6 (permalink)  
Old 11-15-2003
Peter
 
Posts: n/a
Default Re: Connecting to Sendmail

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
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 01:59 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0