| 619 | } |
| 620 | |
| 621 | IMAPCustomCommandOperation * IMAPAsyncSession::customCommand(String *command, bool urgent) |
| 622 | { |
| 623 | |
| 624 | IMAPCustomCommandOperation *op = new IMAPCustomCommandOperation(); |
| 625 | op->setMainSession(this); |
| 626 | op->setCustomCommand(command); |
| 627 | op->setUrgent(urgent); |
| 628 | op->autorelease(); |
| 629 | return op; |
| 630 | } |
| 631 | |
| 632 | IMAPFetchContentOperation * IMAPAsyncSession::fetchMessageAttachmentByNumberOperation(String * folder, uint32_t number, String * partID, |
| 633 | Encoding encoding, bool urgent) |
no test coverage detected