| 4226 | } |
| 4227 | |
| 4228 | IndexSet * IMAPSession::storedCapabilities() { |
| 4229 | if (mImap == NULL || |
| 4230 | mImap->imap_connection_info == NULL || |
| 4231 | mImap->imap_connection_info->imap_capability == NULL) { |
| 4232 | return NULL; |
| 4233 | } |
| 4234 | IndexSet *result = new IndexSet(); |
| 4235 | capabilitySetWithSessionState(result); |
| 4236 | result->autorelease(); |
| 4237 | return result; |
| 4238 | } |
| 4239 | |
| 4240 | void IMAPSession::applyCapabilities(IndexSet * capabilities) |
| 4241 | { |