diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-08-17 15:06:28 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-08-17 15:06:28 -0700 |
commit | 249c9aef35618f620382dc9ce50d811706ccd82f (patch) | |
tree | 9d74ef699d10f07c2d73a37faddbe5a64ff9e6b2 /config.default.php | |
parent | eb76e1e530627eae34c74f0db3ed33d9a0da6810 (diff) |
Add secure connection TLS/SSL for the SMTP transport
Diffstat (limited to 'config.default.php')
-rw-r--r-- | config.default.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.default.php b/config.default.php index 9e597488..6986cd48 100644 --- a/config.default.php +++ b/config.default.php @@ -11,6 +11,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" // Sendmail command to use when the transport is "sendmail" define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'); |