On 12/07/2011 09:10 PM, Grant wrote:

I'm trying to figure out why I can't connect to 587 in Squirrelmail.
I can in Thunderbird.


You did select STARTTLS in the SquirrelMail config, right? The postfix logs might give you an idea what it's trying to do.

The docs say that you need PHP with the stream_socket_enable_crypto() function. If you're like me, you may have casually disabled some critical PHP feature via USE flags =)

If you have that function, this page will complain that the function expects 2 parameters and was given zero:

$ cat test.php
<?php stream_socket_enable_crypto(); ?>

$ php test.php
PHP Warning: stream_socket_enable_crypto() expects at least 2 parameters, 0 given in /home/mjo/test.php on line 1

Warning: stream_socket_enable_crypto() expects at least 2 parameters, 0 given in /home/mjo/test.php on line 1

Reply via email to