Lines Matching refs:mailbox
320 def append(self, mailbox, flags, date_time, message): argument
328 if not mailbox:
329 mailbox = 'INBOX'
340 return self._simple_command(name, mailbox, flags, date_time)
412 def create(self, mailbox): argument
417 return self._simple_command('CREATE', mailbox)
420 def delete(self, mailbox): argument
425 return self._simple_command('DELETE', mailbox)
427 def deleteacl(self, mailbox, who): argument
432 return self._simple_command('DELETEACL', mailbox, who)
463 def getacl(self, mailbox): argument
468 typ, dat = self._simple_command('GETACL', mailbox)
472 def getannotation(self, mailbox, entry, attribute): argument
476 typ, dat = self._simple_command('GETANNOTATION', mailbox, entry, attribute)
491 def getquotaroot(self, mailbox): argument
496 typ, dat = self._simple_command('GETQUOTAROOT', mailbox)
570 def myrights(self, mailbox): argument
575 typ,dat = self._simple_command('MYRIGHTS', mailbox)
647 def select(self, mailbox='INBOX', readonly=False): argument
665 typ, dat = self._simple_command(name, mailbox)
675 raise self.readonly('%s is not writable' % mailbox)
679 def setacl(self, mailbox, who, what): argument
684 return self._simple_command('SETACL', mailbox, who, what)
718 def status(self, mailbox, names): argument
726 typ, dat = self._simple_command(name, mailbox, names)
741 def subscribe(self, mailbox): argument
746 return self._simple_command('SUBSCRIBE', mailbox)
784 def unsubscribe(self, mailbox): argument
789 return self._simple_command('UNSUBSCRIBE', mailbox)