From f64f5f59077e3bffe4dd8b60ab4ff0d674d0fc26 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Mon, 09 Jun 2008 16:57:53 -0400 Subject: [PATCH] Update version strings --- config/main.inc.php.dist | 19 ++++++++++++++++++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index e8fbd2f..67d82c8 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -134,7 +134,7 @@ $rcmail_config['date_today'] = 'H:i'; // add this user-agent to message headers when sending -$rcmail_config['useragent'] = 'RoundCube Webmail/0.1'; +$rcmail_config['useragent'] = 'RoundCube Webmail/0.2a'; // use this name to compose page titles $rcmail_config['product_name'] = 'RoundCube Webmail'; @@ -247,6 +247,7 @@ * 'name' => 'Verisign.com', * 'hosts' => array('directory.verisign.com'), * 'port' => 389, + * 'use_tls' => false, * 'user_specific' => false, // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login. * // %fu - The full username provided, assumes the username is an email * // address, uses the username_domain value if not an email address. @@ -270,6 +271,7 @@ * 'sort' => 'cn', // The field to sort the listing by. * 'scope' => 'sub', // search mode: sub|base|list * 'filter' => '', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act + * 'global_search' => true, // perform a global search for address auto-completion on compose * 'fuzzy_search' => true); // server allows wildcard search */ @@ -328,5 +330,20 @@ // Compact INBOX on logout $rcmail_config['logout_expunge'] = FALSE; +/** + * 'Delete always' + * This setting reflects if mail should be always marked as deleted, + * even if moving to "Trash" fails. This is necessary in some setups + * because a) people may not have a Trash folder or b) they are over + * quota (and Trash is included in the quota). + * + * This is a failover setting for iil_C_Move when a message is moved + * to the Trash, and not the same as "delete_right_away". + */ +$rcmail_config['delete_always'] = false; + +// Log successful logins +$rcmail_config['log_logins'] = false; + // end of config file ?> -- Gitblit v1.9.1