]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/openmailadmin/config.local.inc.php
Merge branch 'thirteen' of ssh://git.ipfire.org/pub/git/ipfire-2.x into thirteen
[people/pmueller/ipfire-2.x.git] / config / openmailadmin / config.local.inc.php
1 <?php
2 /* Created by setup.php (1.0.0) on Sun, 23 Sep 2007 16:44:38 +0200 */
3 $cfg['user_ignore'] = array('cyrus');
4 $cfg['passwd']['strategy'] = 'PasswordPlaintext';
5
6 // repeat these lines for every server or virtual domain
7 $cfg['Servers']['verbose'][] = 'my database';
8 $cfg['Servers']['number'][] = $i++;
9 $cfg['Servers']['DB'][] = array(
10 'DSN' => 'mysql://root:mysqlfire@localhost/mail',
11 'PREFIX' => '',
12 );
13 $cfg['Servers']['IMAP'][] = array(
14 'TYPE' => 'cyrus',
15 'HOST' => 'localhost',
16 'PORT' => 143,
17 'ADMIN' => 'cyrus',
18 'PASS' => 'ipfire',
19 'VDOM' => ''
20 );
21 ?>