Re: Squirrelmail does not connect to SSL IMAP server after upgrading to PHP 5.6

Volodymyr Boyko <[email protected]>
Newsgroups gmane.mail.squirrelmail.user
Message-ID <[email protected]>
Hi
you can find all possible options here:
http://php.net/manual/en/context.ssl.php
probably you were looking for 'allow_self_signed' option.

Also this config works for me to completely disable cert checks:
$imap_stream_options = array( 
        'tls' => array( 
                'verify_peer' => false,
		'verify_peer_name' => false,
        ), 
        'ssl' => array( 
                'verify_peer' => false, 
		'verify_peer_name' => false,
         ), 
);

$smtp_stream_options = array( 
        'tls' => array( 
               'verify_peer' => false, 
		'verify_peer_name' => false,
        ), 
        'ssl' => array( 
                'verify_peer' => false, 
		'verify_peer_name' => false,
         ), 
);




--
Sent from: http://squirrelmail.5843.n7.nabble.com/squirrelmail-users-f3.html


-----
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: [email protected]
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.