Lines Matching refs:mailbox
394 def append(self, mailbox, flags, date_time, message): argument
402 if not mailbox:
403 mailbox = 'INBOX'
417 return self._simple_command(name, mailbox, flags, date_time)
489 def create(self, mailbox): argument
494 return self._simple_command('CREATE', mailbox)
497 def delete(self, mailbox): argument
502 return self._simple_command('DELETE', mailbox)
504 def deleteacl(self, mailbox, who): argument
509 return self._simple_command('DELETEACL', mailbox, who)
552 def getacl(self, mailbox): argument
557 typ, dat = self._simple_command('GETACL', mailbox)
561 def getannotation(self, mailbox, entry, attribute): argument
565 typ, dat = self._simple_command('GETANNOTATION', mailbox, entry, attribute)
580 def getquotaroot(self, mailbox): argument
585 typ, dat = self._simple_command('GETQUOTAROOT', mailbox)
658 def myrights(self, mailbox): argument
663 typ,dat = self._simple_command('MYRIGHTS', mailbox)
738 def select(self, mailbox='INBOX', readonly=False): argument
756 typ, dat = self._simple_command(name, mailbox)
766 raise self.readonly('%s is not writable' % mailbox)
770 def setacl(self, mailbox, who, what): argument
775 return self._simple_command('SETACL', mailbox, who, what)
832 def status(self, mailbox, names): argument
840 typ, dat = self._simple_command(name, mailbox, names)
855 def subscribe(self, mailbox): argument
860 return self._simple_command('SUBSCRIBE', mailbox)
898 def unsubscribe(self, mailbox): argument
903 return self._simple_command('UNSUBSCRIBE', mailbox)