CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2015/10/21 10:48:50
Modified files:
mail/roundcubemail: Makefile
mail/roundcubemail/pkg: README
Added files:
mail/roundcubemail/patches:
patch-program_lib_Roundcube_rcube_imap_generic_php
Log message:
Patch roundcubemail to use STREAM_CRYPTO_METHOD_SSLv23_CLIENT when making an
imap connection.
PHP's STREAM_CRYPTO_METHOD_TLS_CLIENT is TLSv1.0 only "for BC with pre-5.6".
There's a STREAM_CRYPTO_METHOD_TLS_ANY_CLIENT but it doesn't seem to actually
work, so use STREAM_CRYPTO_METHOD_SSLv23_CLIENT which (at least with libressl)
is TLS-only anyway.
Thanks PHP.
While there, add an explicit note to the README about the requirement to
disable suhosin session encryption now that we're using the extension in the
standard PHP packages.