Skip to content

Commit

Permalink
Fixes #2477: Admin settings, plain-text SMTP password.
Browse files Browse the repository at this point in the history
  • Loading branch information
marceloschmidt committed Mar 17, 2016
1 parent 3c27593 commit 6c24ab8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## NEXT

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

## 0.22.0, 2016-Mar-14

- Add AES encryption routines
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketchat-lib/server/startup/settings.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -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' }

Expand Down

0 comments on commit 6c24ab8

Please sign in to comment.