Delete the ACLs (remove any rights) set for who on mailbox. (typ, [data]) = .deleteacl(mailbox, who)
(self, mailbox, who)
| 583 | return self._simple_command('DELETE', mailbox) |
| 584 | |
| 585 | def deleteacl(self, mailbox, who): |
| 586 | """Delete the ACLs (remove any rights) set for who on mailbox. |
| 587 | |
| 588 | (typ, [data]) = <instance>.deleteacl(mailbox, who) |
| 589 | """ |
| 590 | return self._simple_command('DELETEACL', mailbox, who) |
| 591 | |
| 592 | def enable(self, capability): |
| 593 | """Send an RFC5161 enable string to the server. |
nothing calls this directly
no test coverage detected