Lines Matching defs:message
179 smtp_get_message, /* Get SASL response message */
249 * Gets the authentication message from the response buffer.
253 char *message = Curl_dyn_ptr(&data->conn->proto.smtpc.pp.recvbuf);
257 /* Find the start of the message */
259 for(message += 4; *message == ' ' || *message == '\t'; message++, len--)
262 /* Find the end of the message */
264 if(message[len] != '\r' && message[len] != '\n' && message[len] != ' ' &&
265 message[len] != '\t')
268 /* Terminate the message */
269 message[++len] = '\0';
270 Curl_bufref_set(out, message, len, NULL);
595 * Sends an MAIL command to initiate the upload of a message.
780 * Sends a RCPT TO command for a given recipient as part of the message upload