You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue I think is related to #1883
when an admin is trying to invite users they will get a message saying they cannot since SMTP is not set and that because emailEnabled is false. SMTP works fine but I use a local server with no username and password.
emailEnabled:->console.log'emailEnabled', RocketChat.settings.get('MAIL_URL') or (RocketChat.settings.get('SMTP_Host') andRocketChat.settings.get('SMTP_Username') andRocketChat.settings.get('SMTP_Password'))
returnRocketChat.settings.get('MAIL_URL') or (RocketChat.settings.get('SMTP_Host') andRocketChat.settings.get('SMTP_Username') andRocketChat.settings.get('SMTP_Password'))
It still mandates the username and password but I thought the fix in #1904 will at least set the "MAIL_URL" value and that would be enough but it seems both sides return false or nothing!
The console returns "emailEnabled" only without false or true
So what do you guys think?
Should we just remove the username & password from this check?
but why MAIL_URL is not seen here? or does this file get executed before that value is set!
The text was updated successfully, but these errors were encountered:
This issue I think is related to #1883
when an admin is trying to invite users they will get a message saying they cannot since SMTP is not set and that because
emailEnabled
is false. SMTP works fine but I use a local server with no username and password.That value is set here: https://github.com/RocketChat/Rocket.Chat/blob/develop/packages/rocketchat-ui-admin/admin/users/adminInviteUser.coffee#L4
It still mandates the username and password but I thought the fix in #1904 will at least set the "MAIL_URL" value and that would be enough but it seems both sides return false or nothing!
So what do you guys think?
Should we just remove the username & password from this check?
but why MAIL_URL is not seen here? or does this file get executed before that value is set!
The text was updated successfully, but these errors were encountered: