From fd8c5061097f156da55a9cee8972aa4f13daa7b1 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Mon, 14 Nov 2005 18:55:46 -0500
Subject: [PATCH] SMTPS support and minor bugfixes

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

diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 2910bb0..2220a57 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -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,6 +69,9 @@
 // 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;
 

--
Gitblit v1.9.1