rosie wrote:
>
> I'm running SME Server 5.6beta7 with all current seven
> updates from
>
ftp://ftp.e-smith.org/pub/e-smith/dev/5.6dev/updates/> installed. POP and IMAP server access is set to public and
> from the inside I can access my pop mail account using
> Outlook. But I can't access pop mail from the outside? Any
> ideas?
On your server ensure that the ports open:
bash-2.05a$ /sbin/iptables -L | grep pop3
should give:
ACCEPT tcp -- anywhere anywhere tcp dpt:pop3
Then
From your external machine see if a telnet session to that port will work:
telnet your.server.com 110
Trying ::ffff:xxx.xxx.xxx.xxx...
Trying xxx.xxx.xxx.xxx...
Connected to your.server.com
Escape character is '^]'.
+OK <21090.1041846134@localhost>
user yourusername
+OK
pass yourpassword
+OK
LIST
2742 2769
.
^]
telnet> quit
Connection closed.
If that works its a problem with your client. If you can't connect look in the logfile /var/log/secure for a DENY entry, might give you more of a clue. Also check you can actually reach your machine externally, maybe they're blocking ports 110 and 143 aswell as 25.
--
Damien