diff options
author | Milan Crha <mcrha@redhat.com> | 2010-06-09 00:24:04 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-06-09 00:24:04 +0800 |
commit | 8d37021d29338cdee627dc032696112560416397 (patch) | |
tree | c48dd8f90dc39b3fc29236b2c6ea2b584756dea2 | |
parent | b5b45ab7e8bd8d663ef81a5c8d6dfc5efaa7d646 (diff) | |
download | gsoc2013-evolution-8d37021d29338cdee627dc032696112560416397.tar.gz gsoc2013-evolution-8d37021d29338cdee627dc032696112560416397.tar.zst gsoc2013-evolution-8d37021d29338cdee627dc032696112560416397.zip |
Part of bug #585353 - Use new CAMEL_STORE_REAL_JUNK_FOLDER flag
-rw-r--r-- | mail/message-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 2de21bf558..28cffc1352 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -2864,7 +2864,7 @@ folder_store_supports_vjunk_folder (CamelFolder *folder) if (!store) return FALSE; - return (store->flags & CAMEL_STORE_VJUNK) != 0; + return (store->flags & (CAMEL_STORE_VJUNK | CAMEL_STORE_REAL_JUNK_FOLDER)) != 0; } /* Check if the given node is selectable in the current message list, |