D | imaplib.py | 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) [all …]
|