Skip to content
Snippets Groups Projects
Commit 6c24ab85 authored by Marcelo Schmidt's avatar Marcelo Schmidt
Browse files

Fixes #2477: Admin settings, plain-text SMTP password.

parent 3c275937
No related branches found
No related tags found
No related merge requests found
## NEXT
- Fixes #2477: Admin settings, plain-text SMTP password.
## 0.22.0, 2016-Mar-14
- Add AES encryption routines
......
......@@ -94,7 +94,7 @@ RocketChat.settings.addGroup 'SMTP', ->
@add 'SMTP_Host', '', { type: 'string', env: true }
@add 'SMTP_Port', '', { type: 'string', env: true }
@add 'SMTP_Username', '', { type: 'string', env: true }
@add 'SMTP_Password', '', { type: 'string', env: true }
@add 'SMTP_Password', '', { type: 'password', env: true }
@add 'From_Email', '', { type: 'string', placeholder: 'email@domain' }
@add 'SMTP_Test_Button', 'sendSMTPTestEmail', { type: 'action', actionText: 'Send_a_test_mail_to_my_user' }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment