diff options
author | FUJII Ryota <rf@readonly.xyz> | 2019-02-24 16:23:43 +0900 |
---|---|---|
committer | fguillot <fred@kanboard.net> | 2019-02-25 17:42:39 -0800 |
commit | 39e579e427d1d032faa15f23023b72c304d1a43e (patch) | |
tree | 9b109094aeb73b12d15e55635d9bc7bf4a17a087 /config.default.php | |
parent | 3a421fe15e84dd6b65c7cf42007d3c0c6296d59d (diff) |
Clarify the comment about MAIL_SMTP_ENCRYPTION
Diffstat (limited to 'config.default.php')
-rw-r--r-- | config.default.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.default.php b/config.default.php index ad260cf1..40dfc2c1 100644 --- a/config.default.php +++ b/config.default.php @@ -52,7 +52,7 @@ define('MAIL_SMTP_HOSTNAME', ''); define('MAIL_SMTP_PORT', 25); define('MAIL_SMTP_USERNAME', ''); define('MAIL_SMTP_PASSWORD', ''); -define('MAIL_SMTP_ENCRYPTION', null); // Valid values are "null", "ssl" or "tls" +define('MAIL_SMTP_ENCRYPTION', null); // Valid values are null (not a string "null"), "ssl" or "tls" // Sendmail command to use when the transport is "sendmail" define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'); |