diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-11-14 23:55:46 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-11-14 23:55:46 +0000 |
| commit | 8c3b64d00defbba89f38686297e4e9f43e39fd56 (patch) | |
| tree | 3c688e3e8630d35d52de4f9c85e8d469fb485888 /roundcubemail/config | |
| parent | 48668271f1df53195fef4259cc3c5b2a851c820e (diff) | |
SMTPS support and minor bugfixes
git-svn-id: https://svn.roundcube.net/trunk@83 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 2910bb088..2220a57ee 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/config/main.inc.php.dist @@ -37,10 +37,11 @@ $rcmail_config['default_host'] = ''; $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 @@ $rcmail_config['skin_path'] = 'skins/default/'; // 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; |
