summaryrefslogtreecommitdiff
path: root/www/horde/patches/patch-aa
blob: 4b98c77b107cec60419d6134232846e67efe1b47 (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
$NetBSD: patch-aa,v 1.3 2003/03/17 17:58:14 bouyer Exp $

--- config/horde.php.dist.orig	Thu Jan 23 09:46:48 2003
+++ config/horde.php.dist	Mon Mar 17 17:30:44 2003
@@ -86,14 +86,14 @@
 
 // What backend should we use for authenticating users to Horde? Valid
 // options are currently 'imap', 'ldap', 'mcal', 'sql', 'ftp' and 'krb5'.
-$conf['auth']['driver'] = '';
+$conf['auth']['driver'] = 'imap';
 
 // An array holding any parameters that the Auth object will need to
 // function correctly.
 $conf['auth']['params'] = array();
 
 // For IMAP, this is the server name, port, protocol, etc.
-// $conf['auth']['params']['dsn'] = '{imap.example.com:143/imap}INBOX';
+$conf['auth']['params']['dsn'] = '{localhost:143/imap}INBOX';
 
 // See $conf['prefs']['params'] further down for an example how to
 // setup a SQL backend. But you must use the horde_users SQL table for
@@ -113,14 +113,14 @@
 
 // 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,
 // 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'] = '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,
@@ -145,7 +145,7 @@
 // (meaning use system defaults and don't save any user preferences),
 // '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.
@@ -154,12 +154,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';
+$conf['prefs']['params']['password'] = 'hordemgr';
+$conf['prefs']['params']['database'] = 'horde';
+$conf['prefs']['params']['table'] = 'horde_prefs';
 
 // This is an example configuration for an LDAP preference backend.
 // The schemas needed for ldap are in horde/scripts/ldap.  For more
@@ -208,8 +208,8 @@
 // option; SMTP requires at least a server and a port (if nonstandard).
 // SMTP authentication can be enabled by setting the 'auth' parameter
 // to true.
-$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('host' => 'smtp.example.com');
 
 
@@ -282,10 +282,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'] = 'webmaster@example.com';
+$conf['problems']['email'] = 'postmaster';
 
 
 /**