<?php
// Following two lines from original config.php
defined('ENABLE_URL_REWRITE') or define('ENABLE_URL_REWRITE', true);
defined('LOG_DRIVER') or define('LOG_DRIVER', 'system');
define('PLUGIN_INSTALLER', true);
define('MAIL_TRANSPORT', 'smtp');
// SMTP configuration to use when the "smtp" transport is chosen
define('MAIL_SMTP_HOSTNAME', '********');
define('MAIL_SMTP_PORT', 587);
define('MAIL_SMTP_USERNAME', '********');
define('MAIL_SMTP_PASSWORD', '********');
define('MAIL_SMTP_HELO_NAME', null); // valid: null (default), or FQDN
define('MAIL_SMTP_ENCRYPTION', 'tls'); // Valid values are null (not a string "null"), "ssl" or "tls"
Thanks for your reply, Mr.alfredb.
But there’s a more thing I am confused about, if my ‘MAIL_SMTP_USERNAME’ is kanboard@ct-cloud.com.tw, then what should I type in ‘MAIL_SMTP_HOSTNAME’ ? Should the answer be ct-cloud.com.tw?
And I have sent and received the email successfully.
Does that mean that the SMTP server is OK?
Does that mean that there is no problem in the SMTP server?
BTW, I,ve tried the commands you have tried in your former post
I’ve tried on both host computer and docker kanboard(by executing docker exec -it kanboard /bin/bash). I got the same consequence on both computer and docker kanboard, and you got the same consequence like me.