Home | History | Annotate | Download | only in bin

Lines Matching refs:push

131         self.push('220 %s %s' % (self.__fqdn, __version__))
135 def push(self, msg):
136 asynchat.async_chat.push(self, msg + '\r\n')
149 self.push('500 Error: bad syntax')
161 self.push('502 Error: command "%s" not implemented' % command)
167 self.push('451 Internal confusion')
187 self.push('250 Ok')
189 self.push(status)
194 self.push('501 Syntax: HELO hostname')
197 self.push('503 Duplicate HELO/EHLO')
200 self.push('250 %s' % self.__fqdn)
204 self.push('501 Syntax: NOOP')
206 self.push('250 Ok')
210 self.push('221 Bye')
231 self.push('501 Syntax: MAIL FROM:<address>')
234 self.push('503 Error: nested MAIL command')
238 self.push('250 Ok')
243 self.push('503 Error: need MAIL command')
247 self.push('501 Syntax: RCPT TO: <address>')
251 self.push('250 Ok')
255 self.push('501 Syntax: RSET')
262 self.push('250 Ok')
266 self.push('503 Error: need RCPT command')
269 self.push('501 Syntax: DATA')
273 self.push('354 End data with <CR><LF>.<CR><LF>')