diff options
Diffstat (limited to 'mail/turba/files')
-rw-r--r-- | mail/turba/files/httpd.conf.turba | 32 | ||||
-rw-r--r-- | mail/turba/files/patch-aa | 9 | ||||
-rw-r--r-- | mail/turba/files/patch-ab | 35 | ||||
-rw-r--r-- | mail/turba/files/patch-ac | 16 |
4 files changed, 92 insertions, 0 deletions
diff --git a/mail/turba/files/httpd.conf.turba b/mail/turba/files/httpd.conf.turba new file mode 100644 index 000000000000..95683ab9cd5c --- /dev/null +++ b/mail/turba/files/httpd.conf.turba @@ -0,0 +1,32 @@ + +# Added 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/turba/files/patch-aa b/mail/turba/files/patch-aa new file mode 100644 index 000000000000..1a51d8aec31c --- /dev/null +++ b/mail/turba/files/patch-aa @@ -0,0 +1,9 @@ +--- 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/turba/files/patch-ab b/mail/turba/files/patch-ab new file mode 100644 index 000000000000..f76a7c518225 --- /dev/null +++ b/mail/turba/files/patch-ab @@ -0,0 +1,35 @@ +--- config/sources.php.dist.orig Sun Nov 4 01:42:12 2001 ++++ config/sources.php.dist Sun Nov 18 17:25:08 2001 +@@ -83,21 +83,25 @@ + 'title' => 'Local SQL', + '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/turba/files/patch-ac b/mail/turba/files/patch-ac new file mode 100644 index 000000000000..74914cb6d40e --- /dev/null +++ b/mail/turba/files/patch-ac @@ -0,0 +1,16 @@ +--- 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") ++); + ?> |