diff options
author | ale <ale@FreeBSD.org> | 2014-07-08 02:21:09 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2014-07-08 02:21:09 +0800 |
commit | 6e193052b80a96c87b3a22e10260557c3e575726 (patch) | |
tree | f4cc524283aad9819389d3545151dcc4a1872681 /mail | |
parent | 8ed2091b672d9723ebc20fdd32e7031dccd23101 (diff) | |
download | freebsd-ports-gnome-6e193052b80a96c87b3a22e10260557c3e575726.tar.gz freebsd-ports-gnome-6e193052b80a96c87b3a22e10260557c3e575726.tar.zst freebsd-ports-gnome-6e193052b80a96c87b3a22e10260557c3e575726.zip |
Add last missing piece to support suhosin session encryption.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/roundcube/Makefile | 1 | ||||
-rw-r--r-- | mail/roundcube/files/patch-program_lib_Roundcube_bootstrap.php | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/mail/roundcube/Makefile b/mail/roundcube/Makefile index 5805beb503b5..0852cc18fd28 100644 --- a/mail/roundcube/Makefile +++ b/mail/roundcube/Makefile @@ -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} diff --git a/mail/roundcube/files/patch-program_lib_Roundcube_bootstrap.php b/mail/roundcube/files/patch-program_lib_Roundcube_bootstrap.php new file mode 100644 index 000000000000..db2ca22bfaac --- /dev/null +++ b/mail/roundcube/files/patch-program_lib_Roundcube_bootstrap.php @@ -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, + ); + } |