Error connecting to IMAP server: mail.myserver.com. 10060 : A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
The relevant error message on the server side from the apache error log is:
[client 192.168.1.1] PHP Warning: fsockopen(): unable to connect to mail.myserver.com:143 in E:\\www\\webroot\\myserver\\mail\\SM\\functions\\imap_general.php on line 445, referer: http://www.myserver.com/mail/sm/src/login.php
$domain = myserver.com'; $imapServerAddress = 'mail.myserver.com'; $imapPort = 143; $useSendmail = false; $smtpServerAddress = 'mail.myserver.com'; $smtpPort = 25;
If all servers are on the same box, use "localhost" or "127.0.0.1" for your imap and smtp server addresses. Otherwise, try telnetting from the command line to the imap server to see if it is even functioning (which is not a SM problem):
telnet localhost 143 telnet mail.myserver.com 143
When connected, you can log in w/this command:
A01 LOGIN <username> <password>
- Paul
------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
