|
|
|
|
49
|
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
49
|
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
50
|
// %z - IMAP domain (IMAP hostname without the first part)
|
50
|
// %z - IMAP domain (IMAP hostname without the first part)
|
51
|
// For example %n = mail.domain.tld, %t = domain.tld
|
51
|
// For example %n = mail.domain.tld, %t = domain.tld
|
52
|
-$config['smtp_server'] = 'localhost';
|
|
|
|
|
52
|
+$config['smtp_server'] = 'tls://{{ webmail_domain }}';
|
53
|
|
53
|
|
54
|
// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
|
54
|
// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
|
55
|
// deprecated SSL over SMTP (aka SMTPS))
|
55
|
// deprecated SSL over SMTP (aka SMTPS))
|
56
|
-$config['smtp_port'] = 465;
|
|
|
|
|
56
|
+$config['smtp_port'] = 587;
|
57
|
|
57
|
|
58
|
// SMTP username (if required) if you use %u as the username Roundcube
|
58
|
// SMTP username (if required) if you use %u as the username Roundcube
|
59
|
// will use the current username for login
|
59
|
// will use the current username for login
|