Lines Matching refs:push
62 self.push('+OK dummy pop3 server ready. <timestamp>')
83 self.push('-ERR unrecognized POP3 command "%s".' %cmd)
88 def push(self, data):
89 asynchat.async_chat.push(self, data.encode("ISO-8859-1") + b'\r\n')
93 self.push(arg)
97 self.push("-ERR no such user")
98 self.push('+OK password required')
102 self.push("-ERR wrong password")
103 self.push('+OK 10 messages')
106 self.push('+OK 10 100')
110 self.push('+OK %s %s' % (arg, arg))
112 self.push('+OK')
113 asynchat.async_chat.push(self, LIST_RESP)
118 self.push('+OK %s bytes' %len(RETR_RESP))
119 asynchat.async_chat.push(self, RETR_RESP)
124 self.push('+OK message marked for deletion.')
127 self.push('+OK done nothing.')
130 self.push('+OK done nothing.')
133 self.push('+OK done nothing.')
136 self.push('+OK closing.')
146 self.push('+OK Capability list follows')
152 self.push(' '.join(_ln))
153 self.push('.')
156 self.push('+OK I know RFC6856'
164 self.push('+OK Begin TLS negotiation')
178 self.push('-ERR Command not permitted when TLS active')
406 self.push('+OK dummy pop3 server ready. <timestamp>')