Broc, I think you are right. This is what I'm seeing: % netstat -an | more Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 :::110 :::* LISTEN
I'm not sure how to interpret this. I'm guessing the POP server is not properly bound. Do I just uncomment the <bind> </bind> block and add the ip address of the server? The docs say that if the parameter is omitted, the service will be bound to all network interfaces on the machine. Is this broken under Fedora (FC2) or has the behavior changed? I tried binding it to the address the server with: <bind>192.168.1.50</bind> but it still doesn't quite seem to work. Netstat shows: tcp 0 0 ::ffff:192.168.1.50:110 :::* LISTEN In this case, I can connect from a remote system but the server doesn't spit out the banner. Also on the local machine, I can no longer telnet to "localhost 110", I have to use the specific ip address. Can you provide anymore pointers that might get me going? Thanks. -- Bud > -----Original Message----- > From: Seib, Broc [mailto:[EMAIL PROTECTED] > Sent: Monday, February 14, 2005 12:19 PM > To: James Users List > Subject: RE: POP3 Server Access > > I'd first check that the server is bound to the correct address while it > is running, i.e. the command "netstat -an" should show xx.xx.xx.xx:110 > where xx.xx.xx.xx is an IP address reachable by the world. > > -broc > > > > -----Original Message----- > > From: Bud Bach [mailto:[EMAIL PROTECTED] > > Sent: Monday, February 14, 2005 1:00 PM > > To: server-user@james.apache.org > > Subject: POP3 Server Access > > > > > > I know this is probably something stupid but here goes. I > > have James running and the POP3 server is configured (see below). > > > > > > > > On the local host, I can telnet to port 110 and I get the > > James POP3 banner. From any other machine, I can't connect. > > No firewalls in the way. What am I missing? Is there an > > "allow" list I need to add to allow remote access? > > > > > > > > Thanks for any assistance. - Bud > > > > > > > > config.xml: > > > > > > > > > > > > <!-- The POP3 server is enabled by default --> > > > > <!-- Disabling blocks will stop them from listening, --> > > > > <!-- but does not free as many resources as removing them > > would --> > > > > <pop3server enabled="true"> > > > > <!-- port 995 is the well-known/IANA registered port > > for POP3S ie over SSL/TLS --> > > > > <!-- port 110 is the well-known/IANA registered port > > for Standard POP3 > > --> > > > > <port>110</port> > > > > > > > > <!-- Uncomment this if you want to bind to a specific > > inetaddress --> > > > > <!-- > > > > <bind> </bind> > > > > --> > > > > <!-- Uncomment this if you want to use TLS (SSL) on > > this port --> > > > > <!-- > > > > <useTLS>true</useTLS> > > > > --> > > > > > > > > <handler> > > > > <!-- This is the name used by the server to identify > > itself in the POP3 --> > > > > <!-- protocol. If autodetect is TRUE, the server > > will discover its > > --> > > > > <!-- own host name and use that in the protocol. If > > discovery fails, --> > > > > <!-- the value of 'localhost' is used. If > > autodetect is FALSE, James --> > > > > <!-- will use the specified value. --> > > > > <helloName autodetect="true">myMailServer</helloName> > > > > <connectiontimeout>120000</connectiontimeout> > > > > </handler> > > > > </pop3server> > > > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]