thomascube
2007-09-10 d7d66380f0f9f3a0a3dba3a7e298b1d094105ac0
config/main.inc.php.dist
@@ -97,7 +97,11 @@
$rcmail_config['session_lifetime'] = 10;
// check client IP in session athorization
$rcmail_config['ip_check'] = TRUE;
$rcmail_config['ip_check'] = false;
// Use an additional frequently changing cookie to athenticate user sessions.
// There have been problems reported with this feature.
$rcmail_config['double_auth'] = false;
// this key is used to encrypt the users imap password which is stored
// in the session record (and the client cookie if remember password is enabled).
@@ -186,16 +190,24 @@
// like the Verisign example below. if you would like to test, 
// simply uncomment the Verisign example.
/** 
 *  example config for Verisign directory
 * example config for Verisign directory
 *
 *  $rcmail_config['ldap_public']['Verisign'] = array('hosts'         => array('directory.verisign.com'),
 *                                                    'port'          => 389,
 *                                                    'base_dn'       => '',
 *                                                    'search_fields' => array('Email' => 'mail', 'Name' => 'cn'),
 *                                                    'name_field'    => 'cn',
 *                                                    'mail_field'    => 'mail',
 *                                                    'scope'         => 'sub',
 *                                                    'fuzzy_search'  => 0);
 * $rcmail_config['ldap_public']['Verisign'] = array(
 *  'name'          => 'Verisign.com',
 *  'hosts'         => array('directory.verisign.com'),
 *  'port'          => 389,
 *  'base_dn'       => '',
 *  'bind_dn'       => '',
 *  'bind_pass'     => '',
 *  'ldap_version'  => 3,       // using LDAPv3
 *  'search_fields' => array('mail', 'cn'),  // fields to search in
 *  'name_field'    => 'cn',    // this field represents the contact's name
 *  'email_field'   => 'mail',  // this field represents the contact's e-mail
 *  'surname_field' => 'sn',    // this field represents the contact's last name
 *  'firstname_field' => 'gn',  // this field represents the contact's first name
 *  'scope'         => 'sub',   // search mode: sub|base|list
 *  'filter'        => '',      // used for basic listing (if not empty) and will be &'d with search queries. ex: (status=act)
 *  'fuzzy_search'  => true);   // server allows wildcard search
 */
// don't allow these settings to be overriden by the user
@@ -214,10 +226,10 @@
$rcmail_config['pagesize'] = 40;
// use this timezone to display date/time
$rcmail_config['timezone'] = 1;
$rcmail_config['timezone'] = intval(date('O'))/100 - date('I');
// daylight savings are On
$rcmail_config['dst_active'] = TRUE;
// if daylight savings are On
$rcmail_config['dst_active'] = (bool)date('I');
// prefer displaying HTML messages
$rcmail_config['prefer_html'] = TRUE;
@@ -240,5 +252,8 @@
// default setting if preview pane is enabled
$rcmail_config['preview_pane'] = FALSE;
// don't let users set pagesize to more than this value if set
$rcmail_config['max_pagesize'] = 200;
// end of config file
?>