YunoHost-Apps/wekan_ynh

Cannot test SMTP connection

fflorent opened this issue · 1 comments

Just referencing an issue that has been fixed upstream in case other people meet it.

We cannot test SMTP connection though the admin panel.

The fix is here:
wekan/wekan@afcb8aa

Dirty workaround: modify /var/www/wekan/programs/server/app/app.js:15072 with:

-      if (!user.emails || !user.emails[0] || user.emails[0].address) {
+      if (!user.emails || !user.emails[0] || !user.emails[0].address) {

And restart wekan.

That should work now.

Don't hesitate to close the issue if you feel it is irrelevant, I won't bother :).

That worked for me, thanks!