Mail Server Error

akihito

New member
Joined
Aug 27, 2007
Messages
3
i keep getting this error when i tried to logon webmain

ERROR (2): fsockopen() [function.fsockopen]: unable to connect to localhost:110 (/webmail/inc/class.uebimiau_mail.php:78)

i've tried to portscan my server, this is what i get

202.190.77.10 is responding on port 53 (domain).
202.190.77.10 is responding on port 80 (http).
202.190.77.10 is responding on port 110 (pop3).
202.190.77.10 is responding on port 21 (ftp).
 
See on that server if you can do the command


Code:
telnet localhost 110

You should see:

Code:
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
+OK POP3 Welcome to vm-pop3d 1.1.7f-DA-2

Maybe there is a problem with localhost and not the ip address.
 
This is what i get
telnet localhost 110
Trying ::1...
telnet: connect to address ::1: Connection refused
telnet: Unable to connect to remote host: Connection refused

EDIT: nvm it works now , i think i accidentally removed localhost from the host address

telnet localhost 110
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 202.190.77.10...
Connected to localhost (202.190.77.10).
Escape character is '^]'.
+OK POP3 Welcome to vm-pop3d 1.1.7f-DA-2
i wonder why theres still connection refused o-O
 
Last edited:
telnet: connect to address ::1: Connection refused

This just means that you do not have ipv6 setup. It is nothing to worry about as long as the ipv4 address 127.0.0.1 connects now it is ok.
 
Back
Top