Skip to content

Commit

Permalink
Set room version default to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
neilisfragile committed Oct 19, 2019
1 parent 93eaeec commit 82c8799
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/6220.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Increase default room version from 4 to 5, thereby enforcing server key validity period checks.
2 changes: 1 addition & 1 deletion docs/sample_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pid_file: DATADIR/homeserver.pid
# For example, for room version 1, default_room_version should be set
# to "1".
#
#default_room_version: "4"
#default_room_version: "5"

# The GC threshold parameters to pass to `gc.set_threshold`, if defined
#
Expand Down
2 changes: 1 addition & 1 deletion synapse/config/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# in the list.
DEFAULT_BIND_ADDRESSES = ["::", "0.0.0.0"]

DEFAULT_ROOM_VERSION = "4"
DEFAULT_ROOM_VERSION = "5"

ROOM_COMPLEXITY_TOO_GREAT = (
"Your homeserver is unable to join rooms this large or complex. "
Expand Down

0 comments on commit 82c8799

Please sign in to comment.