Skip to content
Snippets Groups Projects
Commit 24605e15 authored by 🥺's avatar 🥺 :transgender_flag: Committed by 🥺
Browse files

make allow_federation default to true

parent c329eb19
No related branches found
No related tags found
No related merge requests found
......@@ -133,8 +133,8 @@ allow_registration = false
registration_token = "change this token for something specific to your server"
# controls whether federation is allowed or not
# defaults to false
allow_federation = true
# defaults to true
# allow_federation = true
# controls whether users are allowed to create rooms.
# appservices and admins are always allowed to create rooms
......
......@@ -57,7 +57,7 @@ pub struct Config {
pub registration_token: Option<String>,
#[serde(default = "true_fn")]
pub allow_encryption: bool,
#[serde(default)]
#[serde(default = "true_fn")]
pub allow_federation: bool,
#[serde(default)]
pub allow_public_room_directory_over_federation: bool,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment