/**
 ** Horde Authentication
 **/

/* If you want to use IMP with Horde and don't want to let the users
 * login twice (once for Horde and once for IMP) you can setup Horde
 * to let IMP do the authentication stuff. Just uncomment the 
 * auth/login/logout lines in registry.php instead of configuring
 * the following settings.
 */

/* Which users should be treated as administrators (root, super-user)
 * by Horde? Example: $conf['auth']['admins'] = array('admin', 'john');
 */
$conf['auth']['admins'] = array();

// What backend should we use for authenticating users to Horde? Valid
// options are currently 'imap', 'ldap', 'mcal', 'sql', and 'ftp'.
$conf['auth']['driver'] = '';

/* An array holding any parameters that the Auth object will need to
 * function correctly. For IMAP, this is the server name, port,
 * protocol, etc.
 * See $conf['prefs']['params'] further down for an example how to
 * setup a SQL backend. But you must use another SQL table for the
 * 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';

