thomascube
2007-09-10 d7d66380f0f9f3a0a3dba3a7e298b1d094105ac0
config/main.inc.php.dist
@@ -199,11 +199,14 @@
 *  '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'        => '',      // will be &'d with search field ex: (status=act)
 *  '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
 */
@@ -223,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;
@@ -249,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
?>