diff options
Diffstat (limited to 'www/horde-devel/files/patch-ab')
-rw-r--r-- | www/horde-devel/files/patch-ab | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/www/horde-devel/files/patch-ab b/www/horde-devel/files/patch-ab index 1e11851..387a52e 100644 --- a/www/horde-devel/files/patch-ab +++ b/www/horde-devel/files/patch-ab @@ -1,6 +1,6 @@ ---- config/horde.php.dist.orig Mon Sep 17 19:47:06 2001 -+++ config/horde.php.dist Fri Nov 16 23:38:28 2001 -@@ -77,7 +77,7 @@ +--- config/horde.php.dist.orig Tue Nov 27 13:36:00 2001 ++++ config/horde.php.dist Tue Dec 4 21:37:30 2001 +@@ -78,7 +78,7 @@ // What backend should we use for authenticating users to Horde? Valid // options are currently 'imap', 'ldap', 'mcal', 'sql', and 'ftp'. @@ -9,7 +9,7 @@ // An array holding any parameters that the Auth object will need to // function correctly. For IMAP, this is the server name, port, -@@ -94,6 +94,10 @@ +@@ -99,6 +99,10 @@ // What log driver should we use? Valid values are 'file', 'mcal', // 'sql', and 'syslog'. @@ -20,7 +20,16 @@ $conf['log']['type'] = 'file'; // What is the name of the log? For the 'file' driver, this is the -@@ -126,12 +130,17 @@ +@@ -106,7 +110,7 @@ + // and for sql it would be the table name to use. For the 'syslog' + // driver it is the facility as a _constant_ (with no quotes), e.g.: + // ... = LOG_LOCAL0; +-$conf['log']['name'] = '/tmp/horde.log'; ++$conf['log']['name'] = '/var/log/horde.log'; + + // What level of messages should we log? The values are LOG_EMERG, + // LOG_ALERT, LOG_CRIT, LOG_ERR, LOG_WARNING, LOG_NOTICE, LOG_INFO, +@@ -131,7 +135,7 @@ // (meaning use system defaults and don't save any user preferences), // 'session' (preferences only persist during the login), 'ldap', // and 'sql'. @@ -29,8 +38,16 @@ // Any parameters that the preferences driver needs. This includes // database or ldap server, username/password to connect with, etc. - $conf['prefs']['params'] = array(); -- +@@ -140,12 +144,12 @@ + // This is an example configuration for a MySQL preference backend. + // The SQL script to setup the preference database is placed in + // horde/scripts/db/prefs.sql. +-// $conf['prefs']['params']['phptype'] = 'mysql'; +-// $conf['prefs']['params']['hostspec'] = 'localhost'; +-// $conf['prefs']['params']['username'] = 'horde'; +-// $conf['prefs']['params']['password'] = '*****'; +-// $conf['prefs']['params']['database'] = 'horde'; +-// $conf['prefs']['params']['table'] = 'horde_prefs'; +$conf['prefs']['params']['phptype'] = 'mysql'; +$conf['prefs']['params']['hostspec'] = 'localhost'; +$conf['prefs']['params']['username'] = 'hordemgr'; @@ -38,5 +55,5 @@ +$conf['prefs']['params']['database'] = 'horde'; +$conf['prefs']['params']['table'] = 'horde_prefs'; + /** - ** Cache System Settings |