aboutsummaryrefslogtreecommitdiff
path: root/libsylph/folder.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-01-17 08:35:55 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-01-17 08:35:55 +0000
commit4405c245a1c3608f76e48fe64bab1122cfdad64b (patch)
tree2fe300963f584cda964ac68c347d17a378ab1da2 /libsylph/folder.h
parent4136cc09224f82a99016a9af275564372c868a4a (diff)
implemented the automatic filtering of IMAP4 INBOX folder.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1491 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/folder.h')
-rw-r--r--libsylph/folder.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libsylph/folder.h b/libsylph/folder.h
index a5083c2e..1c8cd09d 100644
--- a/libsylph/folder.h
+++ b/libsylph/folder.h
@@ -1,6 +1,6 @@
/*
* LibSylph -- E-Mail client library
- * Copyright (C) 1999-2005 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2007 Hiroyuki Yamamoto
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -154,6 +154,9 @@ struct _FolderClass
GSList * (*get_msg_list) (Folder *folder,
FolderItem *item,
gboolean use_cache);
+ GSList * (*get_uncached_msg_list)
+ (Folder *folder,
+ FolderItem *item);
/* return value is filename encoding */
gchar * (*fetch_msg) (Folder *folder,
FolderItem *item,
@@ -367,6 +370,8 @@ gint folder_item_scan (FolderItem *item);
void folder_item_scan_foreach (GHashTable *table);
GSList *folder_item_get_msg_list (FolderItem *item,
gboolean use_cache);
+GSList *folder_item_get_uncached_msg_list
+ (FolderItem *item);
/* return value is filename encoding */
gchar *folder_item_fetch_msg (FolderItem *item,
gint num);