Create new mailbox. (typ, [data]) = .create(mailbox)
(self, mailbox)
| 487 | |
| 488 | |
| 489 | def create(self, mailbox): |
| 490 | """Create new mailbox. |
| 491 | |
| 492 | (typ, [data]) = <instance>.create(mailbox) |
| 493 | """ |
| 494 | return self._simple_command('CREATE', mailbox) |
| 495 | |
| 496 | |
| 497 | def delete(self, mailbox): |
nothing calls this directly
no test coverage detected