Lines Matching refs:send_to
349 char *principal, *send_to, *emailid, *ends, *tm;
367 for (send_to = buffer; *send_to && !isspace(*send_to);
368 send_to++);
370 /* find first non whitespace after principal (start of send_to) */
371 if (*send_to) {
372 *send_to = '\0';
373 send_to++;
374 while (*send_to && isspace(*send_to))
375 send_to++;
378 /* if no send_to, continue, bad entry */
379 if (! *send_to)
382 /* find end of send_to */
383 for (ends = send_to; *ends && !isspace(*ends);
389 if (strchr(send_to, ':')) {
393 op = strdup(send_to);
460 /* if send_to is "renew", note it and refind send_to */
461 } else if (strncasecmp(send_to, "renew",
473 /* find first non whitespace after send_to (start of exptime) */
474 for (send_to = ends+1; *send_to && isspace(*send_to);
475 send_to++);
477 /* if no send_to, continue, bad entry */
478 if (! *send_to) {
480 printf("parseconf: no send_to, badent, skip\n");
484 /* find end of send_to */
485 for (ends = send_to; *ends && !isspace(*ends);
492 /* find first non whitespace after send_to (start of exptime) */
520 printf("parseconf: send_to = '%s', exptime='%s'\n",
521 send_to, exptime);
537 if ((strcmp(send_to, "mail") == 0) && (!*emailid)) {
544 send_to, exptime);
557 config_entry->where_to = strdup(send_to);