• Home
  • Raw
  • Download

Lines Matching refs:_simple_command

337         return self._simple_command(name, mailbox, flags, date_time)
362 typ, dat = self._simple_command('AUTHENTICATE', mech)
374 typ, dat = self._simple_command(name)
383 return self._simple_command('CHECK')
395 typ, dat = self._simple_command('CLOSE')
406 return self._simple_command('COPY', message_set, new_mailbox)
414 return self._simple_command('CREATE', mailbox)
422 return self._simple_command('DELETE', mailbox)
429 return self._simple_command('DELETEACL', mailbox, who)
441 typ, dat = self._simple_command(name)
456 typ, dat = self._simple_command(name, message_set, message_parts)
465 typ, dat = self._simple_command('GETACL', mailbox)
473 typ, dat = self._simple_command('GETANNOTATION', mailbox, entry, attribute)
484 typ, dat = self._simple_command('GETQUOTA', root)
493 typ, dat = self._simple_command('GETQUOTAROOT', mailbox)
507 typ, dat = self._simple_command(name, directory, pattern)
518 typ, dat = self._simple_command('LOGIN', user, self._quote(password))
548 try: typ, dat = self._simple_command('LOGOUT')
564 typ, dat = self._simple_command(name, directory, pattern)
572 typ,dat = self._simple_command('MYRIGHTS', mailbox)
581 typ, dat = self._simple_command(name)
593 return self._simple_command('NOOP')
604 typ, dat = self._simple_command(name, message_num, message_part, start, length)
618 return self._simple_command('PROXYAUTH', user)
626 return self._simple_command('RENAME', oldmailbox, newmailbox)
638 typ, dat = self._simple_command(name, 'CHARSET', charset, *criteria)
640 typ, dat = self._simple_command(name, *criteria)
662 typ, dat = self._simple_command(name, mailbox)
681 return self._simple_command('SETACL', mailbox, who, what)
688 typ, dat = self._simple_command('SETANNOTATION', *args)
697 typ, dat = self._simple_command('SETQUOTA', root, limits)
711 typ, dat = self._simple_command(name, sort_criteria, charset, *search_criteria)
723 typ, dat = self._simple_command(name, mailbox, names)
734 typ, dat = self._simple_command('STORE', message_set, command, flags)
743 return self._simple_command('SUBSCRIBE', mailbox)
752 typ, dat = self._simple_command(name, threading_algorithm, charset, *search_criteria)
773 typ, dat = self._simple_command(name, command, *args)
786 return self._simple_command('UNSUBSCRIBE', mailbox)
804 return self._simple_command(name, *args)
1086 def _simple_command(self, name, *args): member in IMAP4