From 42b11351497ce67e96a0465c76694632cdfb3ecb Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 07 Oct 2005 10:17:08 -0400 Subject: [PATCH] Several bugfixes and feature improvements --- config/main.inc.php.dist | 17 ++++++++++++++--- 1 files changed, 14 insertions(+), 3 deletions(-) diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 79bb964..e34e2f3 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -6,7 +6,7 @@ | | | This file is part of the RoundCube Webmail client | | Copyright (C) 2005, RoundCube Dev. - Switzerland | - | All rights reserved. | + | Licensed under the GNU GPL | | | +-----------------------------------------------------------------------+ @@ -15,8 +15,12 @@ $rcmail_config = array(); -// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show +// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace $rcmail_config['debug_level'] = 5; + +// enable caching of messages and mailbox data in the local database. +// this is recommended if the IMAP server does not run on the same machine +$rcmail_config['enable_caching'] = TRUE; // automatically create a new user when log-in the first time // set to false if only registered users can use this service @@ -24,13 +28,20 @@ // the mail host chosen to perform the log-in // leave blank to show a textbox at login, give a list of hosts -// to display a pulldown menu or set one host as string +// to display a pulldown menu or set one host as string. +// To use SSL connection, enter ssl://hostname:993 $rcmail_config['default_host'] = ''; + +// TCP port used for IMAP connections +$rcmail_config['default_port'] = 143; // use this host for sending mails. // if left blank, the PHP mail() function is used $rcmail_config['smtp_server'] = ''; +// SMTP port (default is 25) +$rcmail_config['smtp_port'] = 25; + // SMTP username (if required) $rcmail_config['smtp_user'] = ''; -- Gitblit v1.9.1