From owner-freebsd-ports@FreeBSD.ORG Tue Jul 20 10:26:53 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3725216A4CE for ; Tue, 20 Jul 2004 10:26:53 +0000 (GMT) Received: from server.alexdupre.com (host245-49.pool8288.interbusiness.it [82.88.49.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 543FF43D64 for ; Tue, 20 Jul 2004 10:26:47 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: from [192.168.0.101] (thunder.alexdupre.com [192.168.0.101]) i6KAQjLQ054322; Tue, 20 Jul 2004 12:26:45 +0200 (CEST) (envelope-from ale@FreeBSD.org) Message-ID: <40FCF365.4040706@FreeBSD.org> Date: Tue, 20 Jul 2004 12:26:45 +0200 From: Alex Dupre User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Matthew Seaman References: <40F7D16F.5050503@FreeBSD.org> <20040720075504.GA53967@happy-idiot-talk.infracaninophile.co.uk> <40FCE89A.2050008@FreeBSD.org> <20040720100502.GB17436@happy-idiot-talk.infracaninophile.co.uk> In-Reply-To: <20040720100502.GB17436@happy-idiot-talk.infracaninophile.co.uk> X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: [HEADS UP] PHP mega-commit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 10:26:53 -0000 Matthew Seaman wrote: > Woops. Here's another problem. Squirrelmail seems to have lost the > ability to connect to an IMAPS server over TLS: > > Warning: fsockopen(): no SSL support in this build in /usr/local/www/squirrelmail/functions/imap_general.php on line 445 > > Warning: fsockopen(): unable to connect to imap.infracaninophile.co.uk:993 in /usr/local/www/squirrelmail/functions/imap_general.php on line 445 > > I've got php4-sockets, php4-openssl and php4-imap installed, and > mail/cclient was installed WITH_SSL_AND_PLAINTEXT=yes This is not a problem with the imap extension. That's correctly configured with SSL support, but imap_general.php doesn't use it, use the standard fsockopen() function. In PHP4, SSL support for fsockopen is enabled only if openssl extension is compiled in statically; with PHP5 you have not this problem. Unfortunately there isn't a obvious solution for this drawback. -- Alex Dupre