Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change room directly access defaults #751

Merged
merged 8 commits into from
Dec 4, 2019
7 changes: 7 additions & 0 deletions lib/SyTest/Homeserver/Synapse.pm
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,13 @@ sub start
media_store_path => "$hs_dir/media_store",
uploads_path => "$hs_dir/uploads_path",

# Both of these settings default to false in order to preserve privacy.
# Sytest assumes that the room directory is open to ensure that the
# open behaviour can be tested, and the default case is handled through
# unit tests.
allow_public_rooms_over_federation => "true",
allow_public_rooms_without_auth => "true",

user_agent_suffix => "homeserver[". $self->{hs_index} . "]",

require_membership_for_aliases => "false",
Expand Down