Home | History | Annotate | Download | only in python2.7

Lines Matching refs:message_set

388     def copy(self, message_set, new_mailbox):
389 """Copy 'message_set' messages onto end of 'new_mailbox'.
391 (typ, [data]) = <instance>.copy(message_set, new_mailbox)
393 return self._simple_command('COPY', message_set, new_mailbox)
432 def fetch(self, message_set, message_parts):
435 (typ, [data, ...]) = <instance>.fetch(message_set, message_parts)
443 typ, dat = self._simple_command(name, message_set, message_parts)
714 def store(self, message_set, command, flags):
717 (typ, [data]) = <instance>.store(message_set, command, flags)
721 typ, dat = self._simple_command('STORE', message_set, command, flags)