Create new mailbox. (typ, [data]) = .create(mailbox)
(self, mailbox)
| 571 | |
| 572 | |
| 573 | def create(self, mailbox): |
| 574 | """Create new mailbox. |
| 575 | |
| 576 | (typ, [data]) = <instance>.create(mailbox) |
| 577 | """ |
| 578 | return self._simple_command('CREATE', mailbox) |
| 579 | |
| 580 | |
| 581 | def delete(self, mailbox): |
nothing calls this directly
no test coverage detected