diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-01-01 10:42:59 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-01-01 10:42:59 +0000 |
| commit | 14d3c5e624132338f8193cb453842bc254e39873 (patch) | |
| tree | 48480a866e83de112b54b828d7cd10f2bd08201a | |
| parent | 72067d9b473a0139d75634b1840b49550d5daceb (diff) | |
- added warning about using TLS with SMTP
git-svn-id: https://svn.roundcube.net/trunk@3192 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index 5c3558a82..f88226514 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/config/main.inc.php.dist @@ -95,9 +95,10 @@ $rcmail_config['virtuser_file'] = ''; // and optional identity name as second column $rcmail_config['virtuser_query'] = ''; -// use this host for sending mails. -// to use SSL connection, set ssl://smtp.host.com -// if left blank, the PHP mail() function is used +// SMTP server host (for sending mails). +// To use SSL connection, set ssl://smtp.host.com +// WARNING: Don't use 'tls://' prefix, TLS is used by default if possible +// If left blank, the PHP mail() function is used // Use %h variable as replacement for user's IMAP hostname $rcmail_config['smtp_server'] = ''; |
