Home | History | Annotate | Download | only in lib

Lines Matching refs:rcpt

288     "RCPT",
488 if(smtp->rcpt)
492 smtp->rcpt->data);
617 * Sends a RCPT TO command for a given recipient as part of the message upload
626 /* Send the RCPT TO command */
627 if(smtp->rcpt->data[0] == '<')
628 result = Curl_pp_sendf(&conn->proto.smtpc.pp, "RCPT TO:%s",
629 smtp->rcpt->data);
631 result = Curl_pp_sendf(&conn->proto.smtpc.pp, "RCPT TO:<%s>",
632 smtp->rcpt->data);
858 if((smtp->rcpt && smtpcode/100 != 2 && smtpcode != 553 && smtpcode != 1) ||
859 (!smtp->rcpt && smtpcode/100 != 2 && smtpcode != 1)) {
872 if(smtp->rcpt) {
873 smtp->rcpt = smtp->rcpt->next;
875 if(smtp->rcpt) {
906 /* Start the RCPT TO command */
912 /* For RCPT responses */
923 failf(data, "RCPT failed: %d", smtpcode);
927 smtp->rcpt = smtp->rcpt->next;
929 if(smtp->rcpt)
930 /* Send the next RCPT TO command */
1295 smtp->rcpt = data->set.mail_rcpt;