always disable mail configuration in the UI
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Robert Kaussow 2020-05-05 21:15:43 +02:00
parent 580444d589
commit 91b16032e7
3 changed files with 3 additions and 4 deletions

View File

@ -1,2 +1,2 @@
* INTERNAL
* use 127.0.0.1 for healthcheck instead of localhost
* ENHANCEMENT
* always disable mail configuration in the UI

View File

@ -57,7 +57,6 @@ volumes:
```Shell
KANBOARD_PLUGIN_INSTALLER=false
KANBOARD_CACHE_DRIVER=memory
KANBOARD_MAIL_CONFIGURATION=true
KANBOARD_MAIL_FROM=
KANBOARD_MAIL_TRANSPORT=mail
KANBOARD_MAIL_SMTP_HOSTNAME=

View File

@ -30,7 +30,7 @@ define('CACHE_DIR', '/var/www/app/data/cache');
define('FILES_DIR', '/var/www/app/data/files');
// Enable/disable email configuration from the user interface
define('MAIL_CONFIGURATION', {{ getenv "KANBOARD_MAIL_CONFIGURATION" "true" }});
define('MAIL_CONFIGURATION', false);
// E-mail address used for the "From" header (notifications)
define('MAIL_FROM', '{{ getenv "KANBOARD_MAIL_FROM" }}');