Changeset 2338
- Timestamp:
- 07/02/07 10:22:47
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-folder.c
r2337 r2338 1524 1524 } 1525 1525 1526 if (store->capabilities & IMAP_CAPABILITY_UIDPLUS) { 1526 if (store->capabilities & IMAP_CAPABILITY_UIDPLUS) 1527 { 1527 1528 response = camel_imap_command (store, folder, ex, 1528 1529 "UID EXPUNGE %s", set); 1530 1531 if (camel_exception_is_set (ex)) 1532 { 1533 store->capabilities &= ~IMAP_CAPABILITY_UIDPLUS; 1534 ((CamelFolderClass *)CAMEL_OBJECT_GET_CLASS(folder))->sync(folder, 0, ex); 1535 response = camel_imap_command (store, folder, ex, "EXPUNGE"); 1536 } 1537 1529 1538 } else 1530 1539 response = camel_imap_command (store, folder, ex, "EXPUNGE"); 1531 1540 1532 if (camel_exception_is_set (ex)) {1533 store->capabilities &= ~IMAP_CAPABILITY_UIDPLUS;1534 ((CamelFolderClass *)CAMEL_OBJECT_GET_CLASS(folder))->sync(folder, 0, ex);1535 }1536 1541 1537 1542 if (response)
