From 4b0f65a597c8339b513bc44e16a95f3803c26369 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Fri, 18 Nov 2005 10:32:20 -0500
Subject: [PATCH] Fixed minor bugs

---
 config/main.inc.php.dist |   26 +++++++++++++++++++++-----
 1 files changed, 21 insertions(+), 5 deletions(-)

diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index c8d1ad0..6a0ada4 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -23,7 +23,7 @@
 $rcmail_config['enable_caching'] = TRUE;
 
 // automatically create a new RoundCube user when log-in the first time.
-// a new user will be created once the IMAP login succeeded.
+// a new user will be created once the IMAP login succeeds.
 // set to false if only registered users can use this service
 $rcmail_config['auto_create_user'] = TRUE;
 
@@ -37,10 +37,11 @@
 $rcmail_config['default_port'] = 143;
 
 // use this host for sending mails.
+// to use SSL connection, set ssl://smtp.host.com
 // if left blank, the PHP mail() function is used
 $rcmail_config['smtp_server'] = '';
 
-// SMTP port (default is 25)
+// SMTP port (default is 25; 465 for SSL)
 $rcmail_config['smtp_port'] = 25;
 
 // SMTP username (if required) if you use %u as the username RoundCube
@@ -68,14 +69,17 @@
 // use this folder to store temp files (must be writebale for apache user)
 $rcmail_config['temp_dir'] = 'temp/';
 
+// use this folder to store log files (must be writebale for apache user)
+$rcmail_config['log_dir'] = 'logs/';
+
 // session lifetime in minutes
 $rcmail_config['session_lifetime'] = 10;
 
 // check client IP in session athorization
 $rcmail_config['ip_check'] = TRUE;
 
-// not shure what this was good for :-) 
-$rcmail_config['locale_string'] = 'de_DE';
+// not sure what this was good for :-) 
+$rcmail_config['locale_string'] = 'en';
 
 // use this format for short date display
 $rcmail_config['date_short'] = 'D H:i';
@@ -100,6 +104,19 @@
 // display these folders separately in the mailbox list
 $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
 
+// default sort col
+$rcmail_config['message_sort_col'] = 'date';
+
+// default sort order
+$rcmail_config['message_sort_order'] = 'DESC';
+
+// path to a text file which will be added to each sent message
+// paths are relative to the RoundCube root folder
+$rcmail_config['generic_message_footer'] = '';
+
+// this string is used as a delimiter for message headers when sending
+$rcmail_config['mail_header_delimiter'] = "\r\n";
+
 
 /***** these settings can be overwritten by user's preferences *****/
 
@@ -114,7 +131,6 @@
 
 // show pretty dates as standard
 $rcmail_config['prettydate'] = TRUE;
-
 
 // end of config file
 ?>

--
Gitblit v1.9.1