nixos/tests/matrix-appservice-irc: disable registration verification
The test would previously error out like this: > synapse_homeserver[1155]: synapse.config._base.ConfigError: You have > enabled open registration without any verification. This is a known > vector for spam and abuse. If you would like to allow public > registration, please consider adding email, captcha, or token-based > verification. Otherwise this check can be removed by setting the > `enable_registration_without_verification` config option to `true`.
This commit is contained in:
parent
19687b6c9c
commit
1d2a0b801a
1 changed files with 3 additions and 0 deletions
|
@ -20,6 +20,9 @@ import ./make-test-python.nix ({ pkgs, ... }:
|
|||
|
||||
enable_registration = true;
|
||||
|
||||
# don't use this in production, always use some form of verification
|
||||
enable_registration_without_verification = true;
|
||||
|
||||
listeners = [ {
|
||||
# The default but tls=false
|
||||
bind_addresses = [
|
||||
|
|
Loading…
Reference in a new issue