aboutsummaryrefslogtreecommitdiff
path: root/libsylph/account.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-12-13 09:32:10 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-12-13 09:32:10 +0000
commit53d03c4970876ad8387fb3a743a25f4b9cec85e3 (patch)
tree4366be8cd9473d70b41a04f8e1d2ed30ed74c4ef /libsylph/account.c
parent9e5d1627ea3320624f3266528130371a0a3aff5a (diff)
enabled custom queue folder.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@826 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/account.c')
-rw-r--r--libsylph/account.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/libsylph/account.c b/libsylph/account.c
index 9c062ded..794a3003 100644
--- a/libsylph/account.c
+++ b/libsylph/account.c
@@ -371,10 +371,19 @@ FolderItem *account_get_special_folder(PrefsAccount *ac_prefs,
}
break;
case F_QUEUE:
- if (ac_prefs->folder)
- item = FOLDER(ac_prefs->folder)->queue;
- if (!item)
- item = folder_get_default_queue();
+ if (ac_prefs->set_queue_folder && ac_prefs->queue_folder) {
+ item = folder_find_item_from_identifier
+ (ac_prefs->queue_folder);
+ /* only allow queue-type folder */
+ if (item && item->stype != F_QUEUE)
+ item = NULL;
+ }
+ if (!item) {
+ if (ac_prefs->folder)
+ item = FOLDER(ac_prefs->folder)->queue;
+ if (!item)
+ item = folder_get_default_queue();
+ }
break;
case F_TRASH:
if (ac_prefs->set_trash_folder && ac_prefs->trash_folder) {