From: Alfons Hoogervorst Date: Wed, 23 Jul 2003 09:24:20 +0000 (+0000) Subject: * src/folder.c X-Git-Tag: rel_0_9_4~69 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=72387ad26c74ac501ec9f5ce925273275379a115 * src/folder.c * src/procmsg.h sync with my local tree to restore some claws-only things --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 2c5b6f819..53bdb49b2 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2003-07-23 [alfons] 0.9.3claws44 + + * src/folder.c + * src/procmsg.h + sync with my local tree to restore some claws-only things + 2003-07-23 [paul] 0.9.3claws43 * src/pixmaps/mime_gpg_expired.xpm ** NEW FILE ** diff --git a/configure.ac b/configure.ac index 6f790a60e..6cc60d6e3 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=3 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=43 +EXTRA_VERSION=44 VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws${EXTRA_VERSION} dnl set $target diff --git a/src/folder.c b/src/folder.c index a49e1ff82..7e5a0966a 100644 --- a/src/folder.c +++ b/src/folder.c @@ -986,7 +986,7 @@ void folder_item_set_default_flags(FolderItem *dest, MsgFlags *flags) } else { flags->perm_flags = 0; } - flags->tmp_flags = 0; + flags->tmp_flags = MSG_CACHED; if (FOLDER_TYPE(dest->folder) == F_MH) { if (dest->stype == F_QUEUE) { MSG_SET_TMP_FLAGS(*flags, MSG_QUEUED); diff --git a/src/procmsg.h b/src/procmsg.h index e794c9402..fef815ffd 100644 --- a/src/procmsg.h +++ b/src/procmsg.h @@ -72,6 +72,7 @@ typedef GSList MsgNumberList; #define MSG_LOCKED (1U << 11) /* msg is locked */ #define MSG_RETRCPT_PENDING (1U << 12) /* return receipt pending */ /* RESERVED */ +#define MSG_RESERVED_CLAWS (1U << 30) /* for sylpheed-claws */ #define MSG_RESERVED (1U << 31) typedef guint32 MsgPermFlags;