Charles Marcus wrote:
On 2012-01-07 8:26 AM, Thomas Bruederli roundcube@gmail.com wrote:
Charles Marcus wrote:
Alec - maybe the main.inc.php config file should document this like it does the use of the deprecated port 465 for smtps? From config/main.inc.php.dist
// SMTP server host (for sending mails). // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls:// // If left blank, the PHP mail() function is used // Use %h variable as replacement for user's IMAP hostname $rcmail_config['smtp_server'] = '';
Hi Thomas,
Sorry, I guess I was unclear.
What I meant was, since SMTPS (SSL over port 465) is deprecated, and the preferred method for SMTP submission is the use of the submission port 587 using STARTTLS, maybe the main.inc.php should include a reference to using port 587, similar to how it does for port 465. So, something like this:
// SMTP port (default is 25; use 587 for STARTTLS, or 465 for the // deprecated SSL over SMTP (aka SMTPS)) $rcmail_config['smtp_port'] = 25;
Done in revision 5786.
Greetings, Thomas