it actually says its "offline" not "stopped". my mistake in my installation of ISPConfig 2.1.1 (i know not the latest) the pop3 service doesnt seem to be running. im using postfix following EXACTLY how the Suse 10.0 Perfect Install guide says. SOmeone let me know how to get the pop3 service running. Obviosuly this is causeing errors in basicly everything that has to do with mail. (i.e. Webmail, which i just installed) Webmail gives me a php "connection refused on localhost:110" or something like that which means the pop3 service isnt running. also ISPConfig says its "offline" by the way, falko is the man and my new idol
heres the result of netstat -tap Code: Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 localhost:899 *:* LISTEN 4539/fam tcp 0 0 *:mysql *:* LISTEN 4379/mysqld tcp 0 0 *:sunrpc *:* LISTEN 4160/portmap tcp 0 0 *:hosts2-ns *:* LISTEN 4027/ispconfig_http tcp 0 0 *:ftp *:* LISTEN 13436/proftpd: (acc tcp 0 0 192.168.1.116:domain *:* LISTEN 12487/named tcp 0 0 carolina.bobbysc:domain *:* LISTEN 12487/named tcp 0 0 localhost:domain *:* LISTEN 12487/named tcp 0 0 localhost:953 *:* LISTEN 12487/named tcp 0 0 *:smtp *:* LISTEN 8869/master tcp 0 0 *:www-http *:* LISTEN 4730/httpd2-prefork tcp 0 0 *:ssh *:* LISTEN 4376/sshd tcp 0 0 localhost:953 *:* LISTEN 12487/named tcp 0 0 *:smtp *:* LISTEN 8869/master tcp 0 0 *:https *:* LISTEN 4730/httpd2-prefork tcp 0 0 carolina.bobbyschul:ssh 192.168.1.102%1073:4630 ESTABLISHED 13514/0 shouldnt there be something about courier or pop3 in there somewhere??
Postfix is not the deamon that handles pop3, pop3 is handled by either ipop3d, courier the pop3 daemon fom UW-Imap or some other pop3 daemon. In you case, pop3 is handled by the courier pop3 daemon. Please try to start pop3 with the command: /etc/init.d/courier-pop3 start
it says: Code: carolina:~ # /etc/init.d/courier-pop3 start -bash: /etc/init.d/courier-pop3: No such file or directory carolina:~ # ugg
Code: carolina:~ # ls -la /etc/init.d/courier* -rwxr-xr-x 1 root root 1938 Sep 9 14:34 /etc/init.d/courier-authdaemon -rwxr-xr-x 1 root root 2376 Sep 9 14:55 /etc/init.d/courier-imap -rwxr-xr-x 1 root root 2857 Sep 9 14:55 /etc/init.d/courier-imap-ssl -rwxr-xr-x 1 root root 2260 Sep 9 14:55 /etc/init.d/courier-pop -rwxr-xr-x 1 root root 2911 Sep 9 14:55 /etc/init.d/courier-pop-ssl carolina:~ #
YESS TILL IS AWESOME!!!!!! i ran that ls and noticed that the path to the courier pop was courier-pop not courier-pop3...started that and it worked perfectly now i just need to get it to start on boot thanks a lot
PLease try this: chkconfig --add courier-authdaemon chkconfig --add courier-imap chkconfig --add courier-imap-ssl chkconfig --add courier-pop chkconfig --add courier-pop-ssl If you dont need the imap daemons, you can leave the imap lines out.