diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-02-22 09:29:05 -0600 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-02-22 09:29:05 -0600 |
commit | 9fe60c3b9c242621177cb8c182f4e23a2ada14e7 (patch) | |
tree | 948934fff4030bbf6bb4bb83dcc83c4afa234511 | |
parent | 114e7b764ed5ae03211cca40e7b19f33292b3d1c (diff) | |
download | pleroma-9fe60c3b9c242621177cb8c182f4e23a2ada14e7.tar.gz |
Add missing invites_enabled and account_activation_required settings
-rw-r--r-- | config/config.exs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 641b2c867..42e2d06a8 100644 --- a/config/config.exs +++ b/config/config.exs @@ -219,6 +219,8 @@ config :pleroma, :instance, max_expiration: 365 * 24 * 60 * 60 }, registrations_open: true, + invites_enabled: false, + account_activation_required: false, federating: true, federation_incoming_replies_max_depth: 100, federation_reachability_timeout_days: 7, |