From 1dbd37d05b13a41a4abc4a03b3f1e7fde880c294 Mon Sep 17 00:00:00 2001 From: Jakub Date: Thu, 16 Dec 2021 15:14:42 +0100 Subject: [PATCH] GODT-1481: Always turn off non-encrypted recipient report --- internal/app/bridge/bridge.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/app/bridge/bridge.go b/internal/app/bridge/bridge.go index ea304e69..becd9c73 100644 --- a/internal/app/bridge/bridge.go +++ b/internal/app/bridge/bridge.go @@ -75,6 +75,9 @@ func mailLoop(b *base.Base, c *cli.Context) error { // nolint[funlen] return err } + // GODT-1481: Always turn off reporting of unencrypted recipient in v2. + b.Settings.SetBool(settings.ReportOutgoingNoEncKey, false) + cache, cacheErr := loadMessageCache(b) if cacheErr != nil { logrus.WithError(cacheErr).Error("Could not load local cache.")