<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can't get pop-3 running. in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793444#M78971</link>
    <description>Check /etc/hosts.allow and /etc/hosts.deny to make sure&lt;BR /&gt;the tcpwrappers is allowing access.</description>
    <pubDate>Mon, 26 Aug 2002 15:00:50 GMT</pubDate>
    <dc:creator>Bill Thorsteinson</dc:creator>
    <dc:date>2002-08-26T15:00:50Z</dc:date>
    <item>
      <title>Can't get pop-3 running.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793440#M78967</link>
      <description>What I've tried so far:&lt;BR /&gt;RedHat 7.1 running as a server was hacked; root password was changed.&lt;BR /&gt;I reformated the hard drive and re-installed. Now pop-3 isn't working.&lt;BR /&gt;Somehow I missed the pop3 module in the install.The popper daemon &lt;BR /&gt;doesn't seem to start. Since everything else is working I'm trying to avoid&lt;BR /&gt;another reformat and reinstall.&lt;BR /&gt;&lt;BR /&gt;pop3 entries are in the services file as shown below.&lt;BR /&gt;I made no changes to the services file.&lt;BR /&gt;&lt;BR /&gt;/etc]# cat services | grep 110&lt;BR /&gt;&lt;BR /&gt;pop3            110/tcp         pop-3           # POP version 3&lt;BR /&gt;pop3            110/udp         pop-3&lt;BR /&gt;kpop            1109/tcp                        # Pop with Kerberos&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I noticed there was no tcp entry for port 110 &lt;BR /&gt;in the /etc/sysconfig/ipchains file so I added one:&lt;BR /&gt;&lt;BR /&gt;/etc]# cat sysconfig/ipchains | grep 110&lt;BR /&gt;&lt;BR /&gt;-A input -s 0/0 -d 0/0 110 -p tcp -y -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;There was no pop3 file in /etc/xinetd.d so I added one:&lt;BR /&gt;&lt;BR /&gt;/etc]# cat xinetd.d/pop3&lt;BR /&gt;# default: on&lt;BR /&gt;&lt;BR /&gt;service pop-3 &lt;BR /&gt;{&lt;BR /&gt;        protocol                = tcp&lt;BR /&gt;        user                    = root&lt;BR /&gt;        socket_type             = stream&lt;BR /&gt;        wait                    = no&lt;BR /&gt;        server                  = /usr/local/sbin/popper qpopper -s&lt;BR /&gt;        disable                 = no    &lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Checked to see that popper was in the location and it was:&lt;BR /&gt;&lt;BR /&gt;/etc]# ls -l /usr/local/sbin/popper&lt;BR /&gt;-rwxr-xr-x    1 root     root       120980 Aug 14 16:49 /usr/local/sbin/popper&lt;BR /&gt;&lt;BR /&gt;After reboot, nothing is listening to port 110:&lt;BR /&gt;&lt;BR /&gt;/etc]# netstat -an | grep 110&lt;BR /&gt;/etc]#&lt;BR /&gt;&lt;BR /&gt;Checked to see if other entries in /etc/xinetd.d were working:&lt;BR /&gt;&lt;BR /&gt;/etc]# netstat -an | grep 80&lt;BR /&gt;tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      &lt;BR /&gt;tcp        0      0 66.112.33.128:80        218.65.222.47:25173     TIME_WAIT   &lt;BR /&gt;tcp        0      0 66.112.33.128:80        217.39.170.167:3671     ESTABLISHED &lt;BR /&gt;tcp        0      0 66.112.33.128:80        68.7.212.146:4397       ESTABLISHED &lt;BR /&gt;tcp        0      0 66.112.33.128:80        68.7.212.146:4414       ESTABLISHED &lt;BR /&gt;tcp        0      0 66.112.33.128:80        68.7.212.146:4398       ESTABLISHED &lt;BR /&gt;/etc]#&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Does anyone see anything I'm missing or made an error on. Many thinks in advance,&lt;BR /&gt;I've been working on this for two weeks now. !!</description>
      <pubDate>Sun, 25 Aug 2002 17:21:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793440#M78967</guid>
      <dc:creator>Vernon Brown_3</dc:creator>
      <dc:date>2002-08-25T17:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 running.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793441#M78968</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;How about your current packet firewall settings?&lt;BR /&gt;&lt;BR /&gt;# ipchains -L&lt;BR /&gt;or&lt;BR /&gt;# iptables -L&lt;BR /&gt;&lt;BR /&gt;give you the info.&lt;BR /&gt;&lt;BR /&gt;Try  # telnet your-server 110 to see if the port is open or not.&lt;BR /&gt;&lt;BR /&gt;Good luck</description>
      <pubDate>Mon, 26 Aug 2002 02:23:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793441#M78968</guid>
      <dc:creator>I_M</dc:creator>
      <dc:date>2002-08-26T02:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 running.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793442#M78969</link>
      <description>I get connection refused when I try to telnet to port 110.&lt;BR /&gt;&lt;BR /&gt;/root]# ipchains -L&lt;BR /&gt;&lt;BR /&gt;Chain input (policy ACCEPT):&lt;BR /&gt;target     prot opt     source                destination           ports&lt;BR /&gt;ACCEPT     udp  ------  dns-lax.centurytel.net anywhere              domain -&amp;gt;   any&lt;BR /&gt;ACCEPT     udp  ------  dns-spt.centurytel.net anywhere              domain -&amp;gt;   any&lt;BR /&gt;ACCEPT     udp  ------  90.0.0.1             anywhere              domain -&amp;gt;   any&lt;BR /&gt;ACCEPT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   pop3&lt;BR /&gt;ACCEPT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   smtp&lt;BR /&gt;ACCEPT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   http&lt;BR /&gt;ACCEPT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   ftp&lt;BR /&gt;ACCEPT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   telnet&lt;BR /&gt;ACCEPT     udp  ------  anywhere             anywhere              bootps:bootpc -&amp;gt;   bootps:bootpc&lt;BR /&gt;ACCEPT     udp  ------  anywhere             anywhere              bootps:bootpc -&amp;gt;   bootps:bootpc&lt;BR /&gt;ACCEPT     all  ------  anywhere             anywhere              n/a&lt;BR /&gt;REJECT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   0:1023&lt;BR /&gt;REJECT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   nfs&lt;BR /&gt;REJECT     udp  ------  anywhere             anywhere              any -&amp;gt;   0:1023&lt;BR /&gt;REJECT     udp  ------  anywhere             anywhere              any -&amp;gt;   nfs&lt;BR /&gt;REJECT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   x11:6009&lt;BR /&gt;REJECT     tcp  -y----  anywhere             anywhere              any -&amp;gt;   xfs&lt;BR /&gt;Chain forward (policy DENY):&lt;BR /&gt;target     prot opt     source                destination           ports&lt;BR /&gt;MASQ       all  ------  anywhere             anywhere              n/a&lt;BR /&gt;Chain output (policy ACCEPT):&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/root]# telnet localhost 110&lt;BR /&gt;Trying 127.0.0.1...&lt;BR /&gt;telnet: Unable to connect to remote host: Connection refused&lt;BR /&gt;/root]#</description>
      <pubDate>Mon, 26 Aug 2002 13:14:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793442#M78969</guid>
      <dc:creator>Vernon Brown_3</dc:creator>
      <dc:date>2002-08-26T13:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 running.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793443#M78970</link>
      <description>Does netstat -an show anything listening on port 110.  &lt;BR /&gt;If not you may need to restart xinentd 'killall -HUP xinetd'.</description>
      <pubDate>Mon, 26 Aug 2002 14:55:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793443#M78970</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2002-08-26T14:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 running.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793444#M78971</link>
      <description>Check /etc/hosts.allow and /etc/hosts.deny to make sure&lt;BR /&gt;the tcpwrappers is allowing access.</description>
      <pubDate>Mon, 26 Aug 2002 15:00:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793444#M78971</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2002-08-26T15:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 running.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793445#M78972</link>
      <description>Thanks for your help !&lt;BR /&gt;&lt;BR /&gt;hosts.allow and hosts.deny are both empty contain only comments.&lt;BR /&gt;&lt;BR /&gt;netstat -an returns nothing listening on port 110.&lt;BR /&gt;&lt;BR /&gt;Restarted by rebooting. Still nothing on port 110.&lt;BR /&gt;&lt;BR /&gt;What about the names pop3 or pop-3? I've tried various combinations of each but don't know what is the correct way to name the pop3 file in /etc/xinetd.d file.</description>
      <pubDate>Mon, 26 Aug 2002 18:29:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793445#M78972</guid>
      <dc:creator>Vernon Brown_3</dc:creator>
      <dc:date>2002-08-26T18:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 running.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793446#M78973</link>
      <description>on my system (RH 7.3, sorry) the xinetd.d files are ipop3 and pop3s, the latter being for secure connection.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;Mark</description>
      <pubDate>Mon, 26 Aug 2002 21:54:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793446#M78973</guid>
      <dc:creator>Mark Fenton</dc:creator>
      <dc:date>2002-08-26T21:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Can't get pop-3 running.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793447#M78974</link>
      <description>Thanks; I tried naming the file ipop3. Didn't work :(&lt;BR /&gt;&lt;BR /&gt;Guess I'll have to bite the bullit and re-format and re-install.</description>
      <pubDate>Tue, 27 Aug 2002 11:26:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/can-t-get-pop-3-running/m-p/2793447#M78974</guid>
      <dc:creator>Vernon Brown_3</dc:creator>
      <dc:date>2002-08-27T11:26:57Z</dc:date>
    </item>
  </channel>
</rss>

