diff options
Diffstat (limited to 'mail/horde-turba/files')
-rw-r--r-- | mail/horde-turba/files/httpd.conf.turba | 31 | ||||
-rw-r--r-- | mail/horde-turba/files/patch-aa | 9 | ||||
-rw-r--r-- | mail/horde-turba/files/patch-ab | 35 | ||||
-rw-r--r-- | mail/horde-turba/files/patch-ac | 16 | ||||
-rw-r--r-- | mail/horde-turba/files/patch-lib_api.php | 11 |
5 files changed, 0 insertions, 102 deletions
diff --git a/mail/horde-turba/files/httpd.conf.turba b/mail/horde-turba/files/httpd.conf.turba deleted file mode 100644 index f6674cbb9700..000000000000 --- a/mail/horde-turba/files/httpd.conf.turba +++ /dev/null @@ -1,31 +0,0 @@ -# This is included in Apache's httpd.conf for Turba -# -# For security, don't serve pages from the Turba configuration and -# library directories. -# -<Directory "/home/httpd/html/horde/turba/config"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/turba/lib"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/turba/locale"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/turba/po"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/turba/scripts"> - order deny,allow - deny from all -</Directory> -<Directory "/home/httpd/html/horde/turba/templates"> - order deny,allow - deny from all -</Directory> -# End of Turba configuration ================ - diff --git a/mail/horde-turba/files/patch-aa b/mail/horde-turba/files/patch-aa deleted file mode 100644 index 1a51d8aec31c..000000000000 --- a/mail/horde-turba/files/patch-aa +++ /dev/null @@ -1,9 +0,0 @@ ---- config/conf.php.dist.orig Fri Sep 28 23:29:55 2001 -+++ config/conf.php.dist Sat Nov 17 21:38:00 2001 -@@ -29,5 +29,6 @@ - // example providing a link to IMP (an email program) would be: - // $conf['menu']['apps'] = array('imp'); - $conf['menu']['apps'] = array(); -+//UNCOMMENTWHENINSTIMP$conf['menu']['apps'] = array('imp'); - - ?> diff --git a/mail/horde-turba/files/patch-ab b/mail/horde-turba/files/patch-ab deleted file mode 100644 index 5cc76966a8a9..000000000000 --- a/mail/horde-turba/files/patch-ab +++ /dev/null @@ -1,35 +0,0 @@ ---- config/sources.php.dist.orig Tue Jan 1 13:58:34 2002 -+++ config/sources.php.dist Thu Jan 3 18:04:12 2002 -@@ -92,21 +92,25 @@ - 'title' => 'My Addressbook', - 'type' => 'sql', - 'params' => array( -- 'phptype' => 'pgsql', -- 'hostspec' => '', -- 'username' => '', -- 'password' => '', -+// 'phptype' => 'pgsql', -+ 'phptype' => 'mysql', -+ 'hostspec' => 'localhost', -+ 'username' => 'hordemgr', -+ 'password' => 'hordemgr', - 'database' => 'horde', - 'options' => '', -- 'tty' => '', -- 'port' => '5432', -- 'protocol' => 'unix', -+// 'tty' => '', -+// Default port: 5432 for pgsql (PostGres), 3306 for mysql -+// 'port' => '5432', -+// 'port' => '3306', -+// 'protocol' => 'unix', - 'table' => 'turba_objects' - ), - 'map' => array( - '__key' => 'object_id', - '__owner' => 'owner_id', - 'name' => 'object_name', -+ 'alias' => 'object_alias', - 'email' => 'object_email', - 'homeAddress' => 'object_homeAddress', - 'workAddress' => 'object_workAddress', diff --git a/mail/horde-turba/files/patch-ac b/mail/horde-turba/files/patch-ac deleted file mode 100644 index 74914cb6d40e..000000000000 --- a/mail/horde-turba/files/patch-ac +++ /dev/null @@ -1,16 +0,0 @@ ---- config/prefs.php.dist.orig Mon Oct 22 09:09:23 2001 -+++ config/prefs.php.dist Sun Nov 18 01:21:42 2001 -@@ -16,4 +16,13 @@ - 'type' => 'select', - 'desc' => _("Select your preferred language:") - ); -+ -+// Addressbook -+$_prefs['searchsource'] = array( -+ 'value' => 'localsql', -+ 'locked' => false, -+ 'shared' => true, -+ 'type' => 'select', -+ 'desc' => _("from") -+); - ?> diff --git a/mail/horde-turba/files/patch-lib_api.php b/mail/horde-turba/files/patch-lib_api.php deleted file mode 100644 index 1a4af9ffe0e0..000000000000 --- a/mail/horde-turba/files/patch-lib_api.php +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/api.php.orig Tue Dec 25 20:01:35 2001 -+++ lib/api.php Thu Jan 17 23:46:58 2002 -@@ -90,7 +90,7 @@ - - $driver = Turba_Source::factory($addressbook, $cfgSources[$addressbook]); - $res = $driver->search(array('name' => $name, 'email' => $address), LASTNAME, TURBA_SEARCH_AND); -- if (PEAR::isError($res) || count($res) > 0) { -+ if (PEAR::isError($res) || count($res->objects) > 0) { - return PEAR::raiseError(_("This person is already in your addressbook."), HORDE_MESSAGE); - } - |