diff options
author | alecpl <alec@alec.pl> | 2010-01-01 10:42:59 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-01-01 10:42:59 +0000 |
commit | c3b676381bfca2a7909562c628eb06a9fbf3814d (patch) | |
tree | b233a791840786f811e36a130010a2f246851ae0 | |
parent | 6c14037eafe36aaab70b6d00bb2614ee50b7c7f2 (diff) |
- added warning about using TLS with SMTP
-rw-r--r-- | config/main.inc.php.dist | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 5c3558a82..f88226514 100644 --- a/config/main.inc.php.dist +++ b/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'] = ''; |