From 202ef22db999fd77b66142f3dcdb2df62d0018d8 Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Mon, 19 May 2008 05:06:26 +0000 Subject: [PATCH] Don't cache messages' envelopes in folder outlines after all. None of IMAIL uses the envelopes (why not?), and they tickle a problem with a certain (buggy) IMAP server. --- v7/src/imail/imail-imap.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/v7/src/imail/imail-imap.scm b/v7/src/imail/imail-imap.scm index e227524f0..e8d068af0 100644 --- a/v7/src/imail/imail-imap.scm +++ b/v7/src/imail/imail-imap.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: imail-imap.scm,v 1.217 2008/05/18 23:58:37 riastradh Exp $ +$Id: imail-imap.scm,v 1.218 2008/05/19 05:06:26 riastradh Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -1198,10 +1198,8 @@ USA. (fill-imap-message-cache folder outline-keywords)) (define content-keywords - ;; I am not sure who, if anyone, uses the envelope, but the body - ;; structure is necessary in order to decide what parts to fetch. - ;; Omitting the envelope does not noticeably expedite the process. - (append '(BODYSTRUCTURE ENVELOPE) outline-keywords)) + ;; What other keywords would be useful here? + (append '(BODYSTRUCTURE) outline-keywords)) (define-method cache-folder-contents ((folder ) walk-mime-body) (fill-imap-message-cache folder content-keywords) -- 2.25.1