How To Implement MTA in Chatwoot?
Chatwoot
3
Posts
3
Posters
18
Views
3
Watching
-
I'd like to implement MTA/2FA in Chatwoot and I already followed this instruction:
https://developers.chatwoot.com/self-hosted/configuration/multi-factor-authentication
However, the security setting is not available. Have you experience this setup?
-
I'd like to implement MTA/2FA in Chatwoot and I already followed this instruction:
https://developers.chatwoot.com/self-hosted/configuration/multi-factor-authentication
However, the security setting is not available. Have you experience this setup?
@IniBudi Which part isn't working? Just tried it out and worked perfectly.
- Go to the web terminal of your Chatwoot application
- enter
rails db:encryption:init - Save the strings that is being displayed
active_record_encryption: primary_key: string deterministic_key: string key_derivation_salt: string- Go to the file manager of the application
- Open the
env.shfile - add these records (replace
stringwith the values from the previous prompt)
# Active Record Encryption keys (required for MFA/2FA functionality) # Replace with the actual keys from rails db:encryption:init output export ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY=string export ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY=string export ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT=string- restart the app
- now you can set up 2FA in the user settings.