use BODY.PEEK, not BODY, so we don't set the message \Seen.
authorDan Winship <danw@src.gnome.org>
Tue, 22 Aug 2000 23:43:31 +0000 (23:43 +0000)
committerDan Winship <danw@src.gnome.org>
Tue, 22 Aug 2000 23:43:31 +0000 (23:43 +0000)
* providers/imap/camel-imap-folder.c
(imap_protocol_get_summary_specifier): use BODY.PEEK, not BODY, so
we don't set the message \Seen.

camel/ChangeLog
camel/providers/imap/camel-imap-folder.c

index 9204c85..4bfae9b 100644 (file)
@@ -1,3 +1,9 @@
+2000-08-22  Dan Winship  <danw@helixcode.com>
+
+       * providers/imap/camel-imap-folder.c
+       (imap_protocol_get_summary_specifier): use BODY.PEEK, not BODY, so
+       we don't set the message \Seen.
+
 2000-08-22  Christopher James Lahey  <clahey@helixcode.com>
 
        * providers/pop3/camel-pop3-store.c: Fixed a small warning.
index 2118554..5730002 100644 (file)
@@ -1065,7 +1065,7 @@ imap_protocol_get_summary_specifier (CamelFolder *folder)
        char *headers_wanted = "SUBJECT FROM TO CC DATE MESSAGE-ID REFERENCES IN-REPLY-TO";
 
        if (CAMEL_IMAP_STORE (folder->parent_store)->server_level >= IMAP_LEVEL_IMAP4REV1) {
-               sect_begin = "BODY[HEADER.FIELDS";
+               sect_begin = "BODY.PEEK[HEADER.FIELDS";
                sect_end = "]";
        } else {
                sect_begin = "RFC822.HEADER.LINES";