diff options
author | Milan Crha <mcrha@redhat.com> | 2009-04-27 18:29:26 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-04-28 20:06:00 +0800 |
commit | fab97ac4cfde3511832be5079d7da909bdbc632f (patch) | |
tree | 78fc1b9077599de6d6101a71a25efc8a7574f705 /mail | |
parent | f785b69224186fe027eab226c776cd95008724b6 (diff) | |
download | gsoc2013-evolution-fab97ac4cfde3511832be5079d7da909bdbc632f.tar.gz gsoc2013-evolution-fab97ac4cfde3511832be5079d7da909bdbc632f.tar.zst gsoc2013-evolution-fab97ac4cfde3511832be5079d7da909bdbc632f.zip |
Hide last junked message too from the non-junk folder
** Fix for bug #579635
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/message-list.c | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 5bbf0366b5..586cb1b7bf 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2009-04-27 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #579635 + + * message-list.c: (regen_list_exec): Do not keep last junked messages + in a message list for folders not showing junks. + 2009-04-24 Milan Crha <mcrha@redhat.com> ** Fix for bug #579306 diff --git a/mail/message-list.c b/mail/message-list.c index dce409ee04..11d0f19707 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -4232,7 +4232,8 @@ regen_list_exec (struct _regen_list_msg *m) CamelMessageInfo *looking_info = camel_folder_get_message_info (m->folder, looking_for); if (looking_info) { - gboolean was_deleted = (camel_message_info_flags (looking_info) & CAMEL_MESSAGE_DELETED) != 0; + gboolean is_deleted = (camel_message_info_flags (looking_info) & CAMEL_MESSAGE_DELETED) != 0; + gboolean is_junk = (camel_message_info_flags (looking_info) & CAMEL_MESSAGE_JUNK) != 0; /* I would really like to check for CAMEL_MESSAGE_FOLDER_FLAGGED on a message, so I would know whether it was changed locally, and then just check the changes @@ -4240,7 +4241,7 @@ regen_list_exec (struct _regen_list_msg *m) matter. So here just check whether the file was deleted and we show it based on the flag whether we can view deleted messages or not. */ - if (!was_deleted || (was_deleted && !m->hidedel)) + if ((!is_deleted || (is_deleted && !m->hidedel)) && (!is_junk || (is_junk && !m->hidejunk))) g_ptr_array_add (uids, (gpointer) camel_pstring_strdup (looking_for)); } |