diff options
author | 7 <NotZed@Ximian.com> | 2001-10-18 06:59:15 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-18 06:59:15 +0800 |
commit | 66fe416457e3e71943044a1749d319d4f0c5e45f (patch) | |
tree | 7f92b52741d34cff8cfb97778edbad835b870161 | |
parent | a31ef049c0dcc0916b68f1ef099e1c9f44aac75d (diff) | |
download | gsoc2013-evolution-66fe416457e3e71943044a1749d319d4f0c5e45f.tar gsoc2013-evolution-66fe416457e3e71943044a1749d319d4f0c5e45f.tar.gz gsoc2013-evolution-66fe416457e3e71943044a1749d319d4f0c5e45f.tar.bz2 gsoc2013-evolution-66fe416457e3e71943044a1749d319d4f0c5e45f.tar.lz gsoc2013-evolution-66fe416457e3e71943044a1749d319d4f0c5e45f.tar.xz gsoc2013-evolution-66fe416457e3e71943044a1749d319d4f0c5e45f.tar.zst gsoc2013-evolution-66fe416457e3e71943044a1749d319d4f0c5e45f.zip |
Use '.' as the inbox name for filter new messages test.
2001-10-17 <NotZed@Ximian.com>
* providers/local/camel-maildir-folder.c
(camel_maildir_folder_new): Use '.' as the inbox name for filter
new messages test.
svn path=/trunk/; revision=13742
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/providers/local/camel-maildir-folder.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index d638cf6671..2387fd091d 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,9 @@ 2001-10-17 <NotZed@Ximian.com> + * providers/local/camel-maildir-folder.c + (camel_maildir_folder_new): Use '.' as the inbox name for filter + new messages test. + * camel-store.c (camel_folder_info_clone): New function to clone a folderinfo tree. diff --git a/camel/providers/local/camel-maildir-folder.c b/camel/providers/local/camel-maildir-folder.c index 48eb510219..8bd8229237 100644 --- a/camel/providers/local/camel-maildir-folder.c +++ b/camel/providers/local/camel-maildir-folder.c @@ -112,7 +112,7 @@ camel_maildir_folder_new(CamelStore *parent_store, const char *full_name, guint3 folder = (CamelFolder *)camel_object_new(CAMEL_MAILDIR_FOLDER_TYPE); if (parent_store->flags & CAMEL_STORE_FILTER_INBOX - && strcmp(full_name, "") == 0) + && strcmp(full_name, ".") == 0) folder->folder_flags |= CAMEL_FOLDER_FILTER_RECENT; folder = (CamelFolder *)camel_local_folder_construct((CamelLocalFolder *)folder, |