Copy 'message_set' messages onto end of 'new_mailbox'. (typ, [data]) = .copy(message_set, new_mailbox)
(self, message_set, new_mailbox)
| 479 | |
| 480 | |
| 481 | def copy(self, message_set, new_mailbox): |
| 482 | """Copy 'message_set' messages onto end of 'new_mailbox'. |
| 483 | |
| 484 | (typ, [data]) = <instance>.copy(message_set, new_mailbox) |
| 485 | """ |
| 486 | return self._simple_command('COPY', message_set, new_mailbox) |
| 487 | |
| 488 | |
| 489 | def create(self, mailbox): |
nothing calls this directly
no test coverage detected