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
Copy file name to clipboardExpand all lines: docs/advanced.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,22 @@ matrixAuthenticationService:
124
124
some: settings
125
125
```
126
126
127
+
While Matrix Authentication Service supports registration tokens, by default they still require users to validate an email address as part of the registration flow. To remove this requirement you can do:
128
+
129
+
```yml
130
+
matrixAuthenticationService:
131
+
additional:
132
+
auth.yaml:
133
+
config: |
134
+
account:
135
+
password_registration_enabled: true
136
+
registration_token_required: true
137
+
password_registration_email_required: false
138
+
password_change_allowed: true
139
+
```
140
+
141
+
`account.password_registration_email_required` must **never** be set to `false` on a publicly federating deployment without restrictions like `registration_token_required: true` or your deployment will be abused and become a source of spam.
142
+
127
143
### Configuring Matrix RTC
128
144
129
145
Matrix RTC SFU configuration is written in YAML. The documentation can be found [here](https://docs.livekit.io/home/self-hosting/deployment/).
0 commit comments