Skip to content
Snippets Groups Projects
Commit 12385ae8 authored by Arie Peterson's avatar Arie Peterson
Browse files

Merge branch 'update-rocketchat-settings' into 'master'

Configure SMTP and disable 2fa for new users

Closes #819 and #510

See merge request openappstack/openappstack!493
parents ed4dfd53 c881d0f4
Branches
Tags
No related merge requests found
......@@ -68,6 +68,27 @@ data:
value: "true"
- name: Accounts_OAuth_Custom_Openappstack_show_button
value: "true"
# Prevent problems with 2FA in combination with OIDC
# (https://github.com/RocketChat/Rocket.Chat/issues/21533)
- name: Accounts_TwoFactorAuthentication_By_Email_Auto_Opt_In
value: "false"
# Configure SMTP
- name: SMTP_Protocol
value: "smtp"
- name: SMTP_Host
value: "${outgoing_mail_smtp_host}"
- name: SMTP_Port
value: "${outgoing_mail_smtp_port}"
- name: SMTP_IgnoreTLS
value: "false"
- name: SMTP_Pool
value: "false"
- name: SMTP_Username
value: "${outgoing_mail_smtp_user}"
- name: SMTP_Password
value: "${outgoing_mail_smtp_password}"
- name: From_Email
value: "${outgoing_mail_from_address}"
livenessProbe:
initialDelaySeconds: 180
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment