From 446d5303b9c7e7100261fe444bf42319e25e228e Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Fri, 28 Jun 2024 23:49:20 +0200 Subject: jmap: revert fetch threads support This reverts commits: 9e93d9efdb88 ("jmap: fix go static check failure") 0465509eedad ("jmap: skip Email/get call if no emails to get") 9f97c698e3dd ("jmap: fetch entire threads") Issues have been reported about disappearing sent messages. Reported-by: Tristan Partin Signed-off-by: Robin Jarry Acked-by: Tristan Partin --- worker/jmap/cache/gob.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'worker/jmap/cache/gob.go') diff --git a/worker/jmap/cache/gob.go b/worker/jmap/cache/gob.go index 8b153c50..f1b8be33 100644 --- a/worker/jmap/cache/gob.go +++ b/worker/jmap/cache/gob.go @@ -6,12 +6,10 @@ import ( "git.sr.ht/~rockorager/go-jmap/mail/email" "git.sr.ht/~rockorager/go-jmap/mail/mailbox" - "git.sr.ht/~rockorager/go-jmap/mail/thread" ) type jmapObject interface { *email.Email | - *thread.Thread | *email.QueryResponse | *mailbox.Mailbox | *FolderContents | -- cgit