From owner-svn-ports-all@FreeBSD.ORG Mon Jul 7 18:21:10 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F576CEC; Mon, 7 Jul 2014 18:21:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C72A21FD; Mon, 7 Jul 2014 18:21:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s67IL9Ir027506; Mon, 7 Jul 2014 18:21:10 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s67IL9ei027504; Mon, 7 Jul 2014 18:21:09 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201407071821.s67IL9ei027504@svn.freebsd.org> From: Alex Dupre Date: Mon, 7 Jul 2014 18:21:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361111 - in head/mail/roundcube: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2014 18:21:10 -0000 Author: ale Date: Mon Jul 7 18:21:09 2014 New Revision: 361111 URL: http://svnweb.freebsd.org/changeset/ports/361111 QAT: https://qat.redports.org/buildarchive/r361111/ Log: Add last missing piece to support suhosin session encryption. Added: head/mail/roundcube/files/patch-program_lib_Roundcube_bootstrap.php (contents, props changed) Modified: head/mail/roundcube/Makefile Modified: head/mail/roundcube/Makefile ============================================================================== --- head/mail/roundcube/Makefile Mon Jul 7 18:10:37 2014 (r361110) +++ head/mail/roundcube/Makefile Mon Jul 7 18:21:09 2014 (r361111) @@ -2,6 +2,7 @@ PORTNAME= roundcube DISTVERSION= 1.0.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES?= mail www MASTER_SITES= SF/${PORTNAME}mail/${PORTNAME}mail/${DISTVERSION:tu} Added: head/mail/roundcube/files/patch-program_lib_Roundcube_bootstrap.php ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/roundcube/files/patch-program_lib_Roundcube_bootstrap.php Mon Jul 7 18:21:09 2014 (r361111) @@ -0,0 +1,10 @@ +--- program/lib/Roundcube/bootstrap.php.orig 2014-07-07 18:18:50.261368902 +0000 ++++ program/lib/Roundcube/bootstrap.php 2014-07-07 18:18:58.202127091 +0000 +@@ -38,7 +38,6 @@ + // check these additional ini settings if not called via CLI + if (php_sapi_name() != 'cli') { + $config += array( +- 'suhosin.session.encrypt' => false, + 'file_uploads' => true, + ); + }