Networking Forums

Networking Forums > Computer Networking > Linux Networking > cannot received email from pop3

Reply
Thread Tools Display Modes

cannot received email from pop3

 
 
John
Guest
Posts: n/a

 
      09-11-2007, 07:09 AM
Dear all,

Our redhat 9 server runs smoothly¡M However, recently, the outlook express
cannot connect to such server to receive email, Anyway, when I test the pop
server by using telnet "192.168.0.11 110"
the server can give

[root@ns etc]# telnet 192.168.0.10 110
Trying 192.168.0.10...
Connected to ns.xx-xx.com (192.168.0.10).
Escape character is '^]'.
Connection closed by foreign host.

It seems not to refuse the request but close the connection immediately.

Why? Please give me helping hand, thanks.

Regards,
Simon



 
Reply With Quote
 
 
 
 
John
Guest
Posts: n/a

 
      09-11-2007, 07:31 AM
Dear all,

Our redhat 9 server runs smoothly¡M However, recently, the outlook express
cannot connect to such server to receive email, Anyway, when I test the pop
server by using telnet "192.168.0.11 110" the server can give

[root@ns etc]# telnet 192.168.0.10 110
Trying 192.168.0.10...
Connected to ns.xx-xx.com (192.168.0.10).
Escape character is '^]'.
Connection closed by foreign host.

It seems not to refuse the request but close the connection immediately.

[root@ns etc]# netstat -lt|grep pop
tcp 0 0 *op3s *:* LISTEN
tcp 0 0 *op2 *:* LISTEN
tcp 0 0 *op3 *:* LISTEN

Why? Please give me helping hand, thanks.

Regards,
Simon

>
>



 
Reply With Quote
 
SRG
Guest
Posts: n/a

 
      09-12-2007, 09:33 AM
On Sep 11, 12:09 pm, "John" <John...@yahoo.com> wrote:
> Dear all,
>
> Our redhat 9 server runs smoothly¡M However, recently, the outlook express
> cannot connect to such server to receive email, Anyway, when I test the pop
> server by using telnet "192.168.0.11 110"
> the server can give
>
> [root@ns etc]# telnet 192.168.0.10 110
> Trying 192.168.0.10...
> Connected to ns.xx-xx.com (192.168.0.10).
> Escape character is '^]'.
> Connection closed by foreign host.
>
> It seems not to refuse the request but close the connection immediately.
>
> Why? Please give me helping hand, thanks.
>
> Regards,
> Simon


Their could be lot of reasons, what mail server are you using?

 
Reply With Quote
 
Davide Bianchi
Guest
Posts: n/a

 
      09-12-2007, 09:57 AM
On 2007-09-11, John <(E-Mail Removed)> wrote:
> [root@ns etc]# netstat -lt|grep pop
> tcp 0 0 *op3s *:* LISTEN
> tcp 0 0 *op2 *:* LISTEN
> tcp 0 0 *op3 *:* LISTEN
>
> Why?


why what?

most of the time the pop server runs from Xinetd (or inetd) so the
server always listen on that port and then 'spawn' the real server
when requested, you should check if that can be spawned and eventually
what problems does it have.

>Please give me helping hand


You have to help yourself, is your server not ours. we can point you in
some direction but you have to do the job.

Davide

--
I'm an apatheist. The question is no longer interesting, and the
answer no longer matters.
-- from alt.sysadmin.recovery
 
Reply With Quote
 
Tilman Schmidt
Guest
Posts: n/a

 
      09-12-2007, 10:43 AM
John schrieb:
> Dear all,
>
> Our redhat 9 server runs smoothly¡M However, recently, the outlook express
> cannot connect to such server to receive email, Anyway, when I test the pop
> server by using telnet "192.168.0.11 110" the server can give
>
> [root@ns etc]# telnet 192.168.0.10 110
> Trying 192.168.0.10...
> Connected to ns.xx-xx.com (192.168.0.10).
> Escape character is '^]'.
> Connection closed by foreign host.
>
> It seems not to refuse the request but close the connection immediately.
>
> [root@ns etc]# netstat -lt|grep pop
> tcp 0 0 *op3s *:* LISTEN
> tcp 0 0 *op2 *:* LISTEN
> tcp 0 0 *op3 *:* LISTEN
>
> Why? Please give me helping hand, thanks.


Difficult if you give so precious little information about your setup.
But in general terms:
- Check the network connection between the client and server.
- In particular check if there are any firewalls/filters active between
or on either of them.
- Check the log of your POP3 server software (whatever it is) for any
traces of your connection attempts and reasons for rejection.
- Run netstat with the -p option to see if the process listening on the
POP3 port is the one you think it is.
- As the problem started recently, find out what (was) changed between
the last time it worked correctly and the first time it didn't work
anymore.
HTH
T.

--
Please excuse my bad English/German/French/Greek/Cantonese/Klingon/...
 
Reply With Quote
 
Niels Baggesen
Guest
Posts: n/a

 
      09-12-2007, 02:43 PM
In comp.mail.imap John <(E-Mail Removed)> wrote:
> [root@ns etc]# telnet 192.168.0.10 110
> Trying 192.168.0.10...
> Connected to ns.xx-xx.com (192.168.0.10).
> Escape character is '^]'.
> Connection closed by foreign host.


> It seems not to refuse the request but close the connection immediately.


A common reason for such behaviour is TCP wrappers. Whappers. Have you
changed your hosts.allow or hosts.deny?

/NIels

--
Niels Baggesen -- @home -- Århus -- Denmark -- (E-Mail Removed)
The purpose of computing is insight, not numbers -- R W Hamming
 
Reply With Quote
 
Dave Uhring
Guest
Posts: n/a

 
      09-12-2007, 02:43 PM
On Tue, 11 Sep 2007 15:31:27 +0800, John wrote:

> Our redhat 9 server runs smoothly¡M


RHL-9 was EOL'd years ago and no updates are now available. Install an
OS which is currently supported. If you do not wish to pay Red Hat their
license fee for RHEL then consider using CentOS which is almost identical
to the Red Hat product.

> [root@ns etc]# telnet 192.168.0.10 110 Trying 192.168.0.10...
> Connected to ns.xx-xx.com (192.168.0.10). Escape character is '^]'.
> Connection closed by foreign host.


The default installation of RHL provides a firewall (iptables) which
blocks incoming port 110. Edit your iptables rules file to permit access
to port 110 and execute /etc/init.d/iptables restart.
 
Reply With Quote
 
Bill Cole
Guest
Posts: n/a

 
      09-13-2007, 02:30 AM
In article <(E-Mail Removed)>,
Dave Uhring <(E-Mail Removed)> wrote:

> On Tue, 11 Sep 2007 15:31:27 +0800, John wrote:

[...]
> > [root@ns etc]# telnet 192.168.0.10 110 Trying 192.168.0.10...
> > Connected to ns.xx-xx.com (192.168.0.10). Escape character is '^]'.
> > Connection closed by foreign host.

>
> The default installation of RHL provides a firewall (iptables) which
> blocks incoming port 110. Edit your iptables rules file to permit access
> to port 110 and execute /etc/init.d/iptables restart.


That underlying cause would not be consistent with a connection opening
but immediately closing. That sort of behavior is idiosyncratic of a
service that is running out of inetd/xinetd accessed from an address
which is prohibited by TCP wrapper config.

--
Now where did I hide that website...
 
Reply With Quote
 
Dave Uhring
Guest
Posts: n/a

 
      09-13-2007, 03:45 AM
On Wed, 12 Sep 2007 22:30:55 -0400, Bill Cole wrote:

> In article <(E-Mail Removed)>,
> Dave Uhring <(E-Mail Removed)> wrote:
>
>> On Tue, 11 Sep 2007 15:31:27 +0800, John wrote:

> [...]
>> > [root@ns etc]# telnet 192.168.0.10 110 Trying 192.168.0.10...
>> > Connected to ns.xx-xx.com (192.168.0.10). Escape character is '^]'.
>> > Connection closed by foreign host.

>>
>> The default installation of RHL provides a firewall (iptables) which
>> blocks incoming port 110. Edit your iptables rules file to permit
>> access to port 110 and execute /etc/init.d/iptables restart.

>
> That underlying cause would not be consistent with a connection opening
> but immediately closing. That sort of behavior is idiosyncratic of a
> service that is running out of inetd/xinetd accessed from an address
> which is prohibited by TCP wrapper config.


Yeah, I realized that after a more careful look at his telnet session.
 
Reply With Quote
 
Pascal Hambourg
Guest
Posts: n/a

 
      09-13-2007, 09:15 AM
Hello,

Bill Cole a écrit :
>
>>> [root@ns etc]# telnet 192.168.0.10 110 Trying 192.168.0.10...
>>> Connected to ns.xx-xx.com (192.168.0.10). Escape character is '^]'.
>>> Connection closed by foreign host.

>
> That sort of behavior is idiosyncratic of a
> service that is running out of inetd/xinetd accessed from an address
> which is prohibited by TCP wrapper config.


Or a service which segfaults because of a disk cache corruption in RAM.
I've had that a couple of time on a machine with faulty RAM which caused
one error average per year. Took time to diagnose.
 
Reply With Quote
 
 
 
Reply

Thread Tools
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 On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Retrieving POP3 Email on SBS 2003 Server Bikini Browser Windows Networking 2 08-11-2007 06:32 PM
Free Pop3 email account MELLS Broadband 9 05-07-2006 07:40 PM
anyone know any free pop3 email accounts? MELLS Broadband 4 05-05-2006 03:48 PM
OT: Need a free POP3 email account Steven Home Networking 10 03-20-2005 09:15 AM
Any free POP3 email accounts? Fred Finisterre Broadband 13 12-06-2004 09:39 AM



1 2 3 4 5 6 7 8 9 10 11