Lines Matching refs:response
195 This is the message given by the server in response to the
199 This is the message given by the server in response to the
385 - server response code (e.g. '250', or such, if all goes well)
386 Note: returns -1 if it can't read response code.
388 - server response string corresponding to response code (multiline
420 # Check if multiline response.
430 """Send a command, and return its response code."""
463 #parse the ehlo response -ddm
562 response code received when the all data is sent. If msg
617 """Authentication command - requires response processing.
627 It will be called to process the server's challenge response; the
632 - initial_response_ok: Allow sending the RFC 4954 initial-response
635 # RFC 4954 allows auth methods to provide an initial response. Not all
641 response = encode_base64(initial_response.encode('ascii'), eol='')
642 (code, resp) = self.docmd("AUTH", mechanism + " " + response)
647 # If server responds with a challenge, send the response.
651 response = encode_base64(
653 (code, resp) = self.docmd(response)
657 "Server AUTH mechanism infinite loop. Last response: "
667 # CRAM-MD5 does not support initial-response.
694 - initial_response_ok: Allow sending the RFC 4954 initial-response