From 4cce705dc85d628ca2f6ca7beae78c8c300bc814 Mon Sep 17 00:00:00 2001 From: Till Faelligen Date: Tue, 5 Oct 2021 23:39:22 +0200 Subject: [PATCH] Enable presence by default --- setup/config/config_global.go | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/config/config_global.go b/setup/config/config_global.go index aefb4fc5e..9de150259 100644 --- a/setup/config/config_global.go +++ b/setup/config/config_global.go @@ -65,6 +65,7 @@ func (c *Global) Defaults() { _, c.PrivateKey, _ = ed25519.GenerateKey(rand.New(rand.NewSource(0))) c.KeyID = "ed25519:auto" c.KeyValidityPeriod = time.Hour * 24 * 7 + c.PresenceEnabled = true c.Kafka.Defaults() c.Metrics.Defaults()