summaryrefslogtreecommitdiff
path: root/www/horde/patches
diff options
context:
space:
mode:
authortv <tv>2006-01-31 20:19:02 +0000
committertv <tv>2006-01-31 20:19:02 +0000
commit1bf85a33a7f0af352174332dac11865971217df5 (patch)
treeac38b597af8194f97ef08d4fd0ea67ec8fae54d6 /www/horde/patches
parentfb412398b2a8cd982d1920218452cdaea52847a6 (diff)
downloadpkgsrc-1bf85a33a7f0af352174332dac11865971217df5.tar.gz
Backport a change from 1.5.22 to 1.5.18 that fixes some issues withtv_libtool_1_5_18_tmpdirfix
temp dir creation when using relink-based finalization.
Diffstat (limited to 'www/horde/patches')
-rw-r--r--www/horde/patches/patch-aa101
1 files changed, 0 insertions, 101 deletions
diff --git a/www/horde/patches/patch-aa b/www/horde/patches/patch-aa
deleted file mode 100644
index f6a6b40ded9..00000000000
--- a/www/horde/patches/patch-aa
+++ /dev/null
@@ -1,101 +0,0 @@
-$NetBSD: patch-aa,v 1.5 2004/11/09 16:23:02 adam Exp $
-
---- config/horde.php.dist.orig 2003-10-14 16:52:31.000000000 +0000
-+++ config/horde.php.dist
-@@ -94,7 +94,7 @@ $conf['tmpdir'] = null;
- // What backend should we use for authenticating users to Horde? Valid
- // options are currently 'imap', 'ldap', 'mcal', 'sql', 'ftp', 'smb',
- // 'krb5' and 'radius'.
--$conf['auth']['driver'] = '';
-+$conf['auth']['driver'] = 'imap';
-
- // An array holding any parameters that the Auth object will need to
- // function correctly.
-@@ -105,7 +105,7 @@ $conf['auth']['params'] = array();
- // c-client version 2000c or older), 'imap/ssl', or imap/ssl/novalidate-cert
- // (for a self-signed certificate). Default ports are 143 for imap and
- // 993 for imap over ssl.
--// $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
-@@ -127,14 +127,14 @@ $conf['log']['enabled'] = true;
-
- // 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,
-@@ -159,7 +159,7 @@ $conf['log']['params'] = array();
- // (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.
-@@ -168,12 +168,12 @@ $conf['prefs']['params'] = array();
- // 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
-@@ -219,15 +219,15 @@ $conf['mailer']['type'] = 'sendmail';
-
- // An array holding any parameters that the Mail object will need to
- // function correctly.
--$conf['mailer']['params'] = array();
-+//$conf['mailer']['params'] = array();
-
- // For sendmail, this is mainly the 'sendmail_path option. Additionally, we
- // want to use the '-oi' argument so that sendmail does not interpret a
- // single '.' in the body of a message as the end of input.
--// $conf['mailer']['params'] = array(
--// 'sendmail_path' => '/usr/lib/sendmail',
--// 'sendmail_args' => '-oi'
--// );
-+$conf['mailer']['params'] = array(
-+ 'sendmail_path' => '/usr/sbin/sendmail',
-+ 'sendmail_args' => '-oi'
-+);
-
- // The 'smtp' driver normally will require a server name. Additional
- // parameters can also be defined - see below for more details.
-@@ -318,10 +318,10 @@ $conf['sessionhandler']['type'] = 'none'
-
- // 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';
-
-
- /**