From 4e98f96966f9b6c005a81554747c0eeb4d8f6f1f Mon Sep 17 00:00:00 2001 From: cpuid Date: Sat, 21 Feb 2009 05:01:15 +0000 Subject: 0.2 is in the mainline tree now, no need to be here :) svn path=/experimental/; revision=854 --- .../files/roundcube-0.1-no-sockets-check.patch | 72 ---------------------- 1 file changed, 72 deletions(-) delete mode 100644 mail-client/roundcube/files/roundcube-0.1-no-sockets-check.patch (limited to 'mail-client/roundcube/files/roundcube-0.1-no-sockets-check.patch') diff --git a/mail-client/roundcube/files/roundcube-0.1-no-sockets-check.patch b/mail-client/roundcube/files/roundcube-0.1-no-sockets-check.patch deleted file mode 100644 index 69bd563..0000000 --- a/mail-client/roundcube/files/roundcube-0.1-no-sockets-check.patch +++ /dev/null @@ -1,72 +0,0 @@ -http://trac.roundcube.net/changeset/1186 -http://trac.roundcube.net/ticket/1484834 -Index: /trunk/roundcubemail/installer/check.php -=================================================================== ---- installer/check.php (revision 1169) -+++ installer/check.php (revision 1186) -@@ -2,5 +2,5 @@ - 'pcre', 'Session' => 'session', 'Sockets' => 'sockets'); -+$required_php_exts = array('PCRE' => 'pcre', 'Session' => 'session'); - - $optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', -@@ -66,5 +66,5 @@ - ?> - --

These extensions are optional but recommended to get the best performance:

-+

The next couple of extensions are optional but recommended to get the best performance:

- - -+

Check if directories are writable

-+

RoundCube may need to write/save files into these directories

-+configured) { -+ $pass = false; -+ foreach (array($RCI->config['temp_dir'],$RCI->config['log_dir']) as $dir) { -+ $dirpath = $dir{0} == '/' ? $dir : $docroot . '/' . $dir; -+ if (is_writable(realpath($dirpath))) { -+ $RCI->pass($dir); -+ $pass = true; -+ } -+ else { -+ $RCI->fail($dir, 'not writeable for the webserver'); -+ } -+ echo '
'; -+ } -+ -+ if (!$pass) -+ echo '

Use chmod or chown to grant write privileges to the webserver

'; -+} -+else { -+ $RCI->fail('Config', 'Could not read config files'); -+} -+ -+?> -+ -

Check configured database settings

- config)) { -+if ($RCI->configured) { - if (!empty($RCI->config['db_backend']) && !empty($RCI->config['db_dsnw'])) { - -Index: /trunk/roundcubemail/installer/welcome.html -=================================================================== ---- installer/welcome.html (revision 1162) -+++ installer/welcome.html (revision 1186) -@@ -11,5 +11,4 @@ -
  • PCRE (perl compatible regular expression)
  • -
  • Session support
  • --
  • Sockets enabled
  • -
  • Libiconv (recommended)
  • -
  • OpenSSL (recommended)
  • -- cgit v1.2.3