Hello Ryan, On Wednesday, March 31, 2004, RYAN vAN GINNEKEN wrote... > Haha. I have not tied any different clients as i really like BINC > (version 1.2.3) have been using it for a log time this is what the > log says. @40000000406a9a9c36df1c8c 773 0 [EMAIL PROTECTED]:] Error > initializing Binc IMAP: SSL negotiation failed: Internal SSL error: > error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol > The reason for using port 993 is because i only have the ssl version > of BINC installed that was all i needed at the time for mozzila and > outlook clients. I will enable the regular version because what you > say makes sense and i read in the squirrel mail docs somewhere that > using the regular port will save on server overhead. I am using > php4.3.4 so that should not be the problem and am recompiling binc > right now with and without ssl hope there is a setting somewhere to > allow a regular local login and an ssl remote login.
Well there are still two possibilities... you didn't turn on the TLS option in the configuration for the IMAP server, and the second one is your compile of PHP doesn't include OpenSSL. The first is easy to test, check config/config.php. To test the second one, do the following: create a file in your web root, call it test.php. In the file, put the following code: <?php phpinfo(); ?> Save the file, then open in your browser, for example: http://myhost.com/test.php Search the file for OpenSSL, and make sure you find a section that says it is enabled. If you don't, then you'll need to recompile PHP, making sure you're using the --with-openssl option (I think that is it, it is in the docs/authentication.txt file). -- Jonathan Angliss ([EMAIL PROTECTED]) Posting Hints: http://article.gmane.org/gmane.mail.squirrelmail.user/16718 ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&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
