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 /doc | |
parent | a2e2ab8997cc57042aadbd507109acdbe0475c2d (diff) |
Add configuration parameter to disable email configuration from user interface
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en_US/config.markdown | 5 | ||||
-rw-r--r-- | doc/tr_TR/config.markdown | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/doc/en_US/config.markdown b/doc/en_US/config.markdown index a2046989..4ccaec27 100644 --- a/doc/en_US/config.markdown +++ b/doc/en_US/config.markdown @@ -65,7 +65,10 @@ Email configuration ------------------- ```php -// E-mail address for the "From" header (notifications) +// Enable/disable email configuration from the user interface +define('MAIL_CONFIGURATION', true); + +// E-mail address used for the "From" header (notifications) define('MAIL_FROM', 'notifications@kanboard.local'); // Mail transport to use: "smtp", "sendmail" or "mail" (PHP mail function) diff --git a/doc/tr_TR/config.markdown b/doc/tr_TR/config.markdown index dc28fbdf..f09b4adf 100644 --- a/doc/tr_TR/config.markdown +++ b/doc/tr_TR/config.markdown @@ -65,7 +65,10 @@ E-posta yapılandırması ------------------- ```php -// E-mail address for the "From" header (notifications) +// Enable/disable email configuration from the user interface +define('MAIL_CONFIGURATION', true); + +// E-mail address used for the "From" header (notifications) define('MAIL_FROM', 'notifications@kanboard.local'); // Mail transport to use: "smtp", "sendmail" or "mail" (PHP mail function) |