From c389327af418fbffe197d79c569e064ed8128b4c Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Fri, 13 Dec 2024 08:28:24 +0100 Subject: [PATCH] fix(imap): Log MessageMapper not finding full text Signed-off-by: Christoph Wurst --- lib/IMAP/MessageMapper.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/IMAP/MessageMapper.php b/lib/IMAP/MessageMapper.php index f61279ef74..0454539b79 100644 --- a/lib/IMAP/MessageMapper.php +++ b/lib/IMAP/MessageMapper.php @@ -492,6 +492,7 @@ public function getFullText(Horde_Imap_Client_Socket $client, } if (($message = $result->first()) === null) { + \OCP\Log\logger('mail')->info('Found ' . $result->count() . ' results'); return null; }