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
{{ message }}
This repository was archived by the owner on Sep 10, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: tools/syn2mas/src/advisor.mts
+3-7Lines changed: 3 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -125,8 +125,8 @@ export async function advisor(): Promise<void> {
125
125
);
126
126
}
127
127
if(synapseConfig.enable_registration_captcha){
128
-
error(
129
-
"Synapse config has registration CAPTCHA enabled which isn't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/138",
128
+
warn(
129
+
"Synapse config has registration CAPTCHA enabled which will need to be configured in MAS",
130
130
);
131
131
}
132
132
if(synapseConfig.user_consent){
@@ -209,10 +209,6 @@ export async function advisor(): Promise<void> {
209
209
warn(
210
210
"Synapse has a non-standard password auth enabled which won't work after migration and will need to be manually mapped to an upstream OpenID Provider during migration",
"Synapse has password auth enabled, but support for password auth in MAS is not feature complete",
215
-
);
216
212
}
217
213
218
214
constexternalIdAuthProviders=(awaitsynapse
@@ -231,7 +227,7 @@ export async function advisor(): Promise<void> {
231
227
);
232
228
if(usersWithPassword>0){
233
229
warn(
234
-
`Synapse database contains ${usersWithPassword} users with a password which will be migrated. However, support for password auth in MAS is not feature complete`,
230
+
`Synapse database contains ${usersWithPassword} users with a password which will be migrated`,
0 commit comments