Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 02 Mar 2015 21:19:03 +1100
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        =?UTF-8?Q?Marko_Cupa=c4=87?= <marko.cupac@mimar.rs>, freebsd-ports@freebsd.org
Subject:   Re: mail/roundcube selfsigned TLS problem after upgrade to php56 (SOLVED)
Message-ID:  <54F43917.8070509@FreeBSD.org>
In-Reply-To: <20150302101511.63ff8eca@efreet>
References:  <20150302095605.52fcd10c@efreet> <20150302101511.63ff8eca@efreet>

next in thread | previous in thread | raw e-mail | index | archive | help
On 2/03/2015 8:15 PM, Marko Cupać wrote:
> On Mon, 2 Mar 2015 09:56:05 +0100
> Marko Cupać <marko.cupac@mimar.rs> wrote:
> 
>> Hi,
>>
>> my roundcube was connecting happily to dovecot2 server over TLS
>> for a few years, until recent upgrade of php ports (5.4 -> 5.6) and
>> roundcube (1.0.5 -> 1.1.0).
>>
>> Luckily, all I needed to add to roundcube config was:
>>
>> $config['imap_conn_options'] = array(
>> 	'ssl' => array(
>> 			'verify_peer' => true,
>> 			'verify_depth' => 3,
>> 			'cafile' => '/etc/ssl/public/dovecot.pem',
>> 			),
>> );
>>
>> I found this information on archlinux forums:
>> https://bbs.archlinux.org/viewtopic.php?id=193012
>>
>> Hope this saves some time to someone, I had my webmail non-functional
>> longer than I'd like to because of this change.
>>
>> Regards,
> 
> Similar goes for managesieve plugin:
> $config['managesieve_conn_options'] = array(
>         'ssl' => array(
>                         'verify_peer' => true,
>                         'verify_depth' => 3,
>                         'cafile' => '/etc/ssl/public/dovecot.pem',
>                         ),
> );
> 
> Probably also for all other plugins that have something to do with TLS.
> 

Perhaps there's something that can be improved in ports if someone would
like to create an issue in Bugzilla, ideally with a patch.

Perhaps a pkg-message?
Perhaps a section, example, or note in the configuration .sample?

--

koobs



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?54F43917.8070509>