Lines Matching refs:line

287 **		line -- the response line.
288 ** firstline -- set if this is the first line of the reply.
298 esmtp_check(line, firstline, m, mci, e)
299 char *line;
305 if (strstr(line, "ESMTP") != NULL)
316 if (strstr(line, "8BIT-OK") != NULL)
403 ** HELO_OPTIONS -- process the options on a HELO line.
406 ** line -- the response line.
407 ** firstline -- set if this is the first line of the reply.
417 helo_options(line, firstline, m, mci, e)
418 char *line;
452 if (strlen(line) < 5)
454 line += 4;
455 p = strpbrk(line, " =");
458 if (sm_strcasecmp(line, "size") == 0)
464 else if (sm_strcasecmp(line, "8bitmime") == 0)
469 else if (sm_strcasecmp(line, "expn") == 0)
471 else if (sm_strcasecmp(line, "dsn") == 0)
473 else if (sm_strcasecmp(line, "enhancedstatuscodes") == 0)
475 else if (sm_strcasecmp(line, "pipelining") == 0)
477 else if (sm_strcasecmp(line, "verb") == 0)
480 else if (sm_strcasecmp(line, "smtputf8") == 0)
484 else if (sm_strcasecmp(line, "starttls") == 0)
487 else if (sm_strcasecmp(line, "deliverby") == 0)
494 else if (sm_strcasecmp(line, "auth") == 0)
619 ** line -- the response line.
620 ** firstline -- set if this is the first line of the reply.
632 getsasldata(line, firstline, m, mci, e)
633 char *line;
646 len = strlen(line);
648 (line[0] != '3') ||
649 !isascii(line[1]) || !isdigit(line[1]) ||
650 !isascii(line[2]) || !isdigit(line[2]))
657 line += 4;
672 result = sasl_decode64(line, len, mci->mci_sasl_string, len + 1,
681 result = sasl_decode64(line, len, out, (unsigned int *) &len);
3078 ** pfunc -- processing function called on each line of response.
3135 ** Read the input line, being careful not to hang.
3174 /* get the line from the other side */
3288 /* process the line */
3358 /* if no continuation lines, return this line */
3362 /* first line of real reply -- ignore rest */
3368 ** line of the response from here on out.