Copy 'message_set' messages onto end of 'new_mailbox'. (typ, [data]) = .copy(message_set, new_mailbox)
(self, message_set, new_mailbox)
| 560 | |
| 561 | |
| 562 | def copy(self, message_set, new_mailbox): |
| 563 | """Copy 'message_set' messages onto end of 'new_mailbox'. |
| 564 | |
| 565 | (typ, [data]) = <instance>.copy(message_set, new_mailbox) |
| 566 | """ |
| 567 | return self._simple_command('COPY', message_set, new_mailbox) |
| 568 | |
| 569 | |
| 570 | def create(self, mailbox): |
nothing calls this directly
no test coverage detected