summaryrefslogtreecommitdiff
path: root/www/horde/patches/patch-aa
blob: a26e7d11c2975d19370e265cb0806d39e3aa0cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
$NetBSD: patch-aa,v 1.2 2002/02/01 22:41:17 bouyer Exp $

--- config/horde.php.dist.orig	Wed Jan 30 01:15:31 2002
+++ config/horde.php.dist	Wed Jan 30 11:01:55 2002
@@ -84,11 +84,11 @@
 /* Which users should be treated as administrators (root, super-user)
  * by Horde? Example: $conf['auth']['admins'] = array('admin', 'john');
  */
-$conf['auth']['admins'] = array();
+$conf['auth']['admins'] = array('root');
 
 // What backend should we use for authenticating users to Horde? Valid
 // options are currently 'imap', 'ldap', 'mcal', 'sql', and 'ftp'.
-$conf['auth']['driver'] = '';
+$conf['auth']['driver'] = 'imap';
 
 /* An array holding any parameters that the Auth object will need to
  * function correctly. For IMAP, this is the server name, port,
@@ -98,8 +98,8 @@
  * authentication driver. A SQL script can be found in 
  * horde/scripts/db/auth.sql .
  */
-$conf['auth']['params'] = array();
-//$conf['auth']['params']['dsn'] = '{imap.example.com/imap:143}INBOX';
+//$conf['auth']['params'] = array();
+$conf['auth']['params']['dsn'] = '{localhost/imap:143}INBOX';
 
 
 /**
@@ -112,7 +112,7 @@
 /* What log driver should we use? Valid values are 'file', 'mcal',
  * 'sql', and 'syslog'.
  */
-$conf['log']['type'] = 'file';
+$conf['log']['type'] = 'syslog';
 
 /* What is the name of the log? For the 'file' driver, this is the
  * path to a text file; for mcal, it would be the name of a calendar,
@@ -120,7 +120,7 @@
  * driver it is the facility as a _constant_ (with no quotes), e.g.:
  * ... = LOG_LOCAL0;
  */
-$conf['log']['name'] = '/tmp/horde.log';
+$conf['log']['name'] = 'LOG_MAIL';
 
 /* What level of messages should we log? The values are LOG_EMERG,
  * LOG_ALERT, LOG_CRIT, LOG_ERR, LOG_WARNING, LOG_NOTICE, LOG_INFO,
@@ -148,23 +148,23 @@
  * 'session' (preferences only persist during the login), 'ldap', 
  * and 'sql'.
  */
-$conf['prefs']['driver'] = 'none';
+$conf['prefs']['driver'] = 'sql';
 
 /* Any parameters that the preferences driver needs. This includes
  * database or ldap server, username/password to connect with, etc.
  */
-$conf['prefs']['params'] = array();
+//$conf['prefs']['params'] = array();
 
 /* This is an example configuration for a MySQL preference backend. 
  * Be sure to set the prefs driver to 'sql' above if you use this
  * configuration. 
  */
-// $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';
+$conf['prefs']['params']['password'] = 'hordemgr';
+$conf['prefs']['params']['database'] = 'horde';
+$conf['prefs']['params']['table'] = 'horde_prefs';
 
 
 /**
@@ -176,13 +176,17 @@
  * only live for the duration of a single request - they are NOT
  * stored in the user's session.
  */
-$conf['category']['driver'] = 'none';
+$conf['category']['driver'] = 'sql';
 
 /* An array holding any parameters that the Category object will need
  * to function correctly.
  */
-$conf['category']['params'] = array();
-
+$conf['category']['params']['phptype'] = 'mysql';
+$conf['category']['params']['hostspec'] = 'localhost';
+$conf['category']['params']['username'] = 'hordemgr';
+$conf['category']['params']['password'] = 'hordemgr';
+$conf['category']['params']['database'] = 'horde';
+$conf['category']['params']['table'] = 'horde_categories';
 
 /**
  ** Cache System Settings
@@ -215,8 +219,8 @@
  * function correctly. For sendmail, this is mainly the sendmail_path
  * option; SMTP requires at least a server and a port (if nonstandard).
  */
-$conf['mailer']['params'] = array();
-// $conf['mailer']['params'] = array('sendmail_path' => '/usr/lib/sendmail');
+//$conf['mailer']['params'] = array();
+$conf['mailer']['params'] = array('sendmail_path' => '/usr/sbin/sendmail');
 // $conf['mailer']['params'] = array('server' => 'smtp.example.com');
 
 /**
@@ -226,10 +230,10 @@
 /* Should we display a problem reporting link in Horde application
  * menus?
  */
-$conf['problems']['enabled'] = false;
+$conf['problems']['enabled'] = true;
 
 /* If so, where should problem report emails be sent? */
-$conf['problems']['email'] = 'postmaster@example.com';
+$conf['problems']['email'] = 'postmaster';
 
 
 /**