diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-02-05 11:54:27 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-02-05 11:54:27 -0500 |
commit | d0a1ed9227a5166aa56d37ccea142cdb1e0ae082 (patch) | |
tree | ccdf94fcd4befcf167a4f7b6fd62d0cb7f3bc5b4 /app/constants.php | |
parent | a2e2ab8997cc57042aadbd507109acdbe0475c2d (diff) |
Add configuration parameter to disable email configuration from user interface
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php index ba14cde6..d62bfd3a 100644 --- a/app/constants.php +++ b/app/constants.php @@ -98,6 +98,7 @@ defined('REVERSE_PROXY_DEFAULT_DOMAIN') or define('REVERSE_PROXY_DEFAULT_DOMAIN' defined('REMEMBER_ME_AUTH') or define('REMEMBER_ME_AUTH', true); // Mail configuration +defined('MAIL_CONFIGURATION') or define('MAIL_CONFIGURATION', true); defined('MAIL_FROM') or define('MAIL_FROM', 'notifications@kanboard.local'); defined('MAIL_TRANSPORT') or define('MAIL_TRANSPORT', 'mail'); defined('MAIL_SMTP_HOSTNAME') or define('MAIL_SMTP_HOSTNAME', ''); |