14091Seric # include <errno.h> 24091Seric # include "sendmail.h" 34091Seric 4*11290Seric SCCSID(@(#)headers.c 3.51 02/26/83); 54091Seric 64091Seric /* 74091Seric ** CHOMPHEADER -- process and save a header line. 84091Seric ** 94091Seric ** Called by collect and by readcf to deal with header lines. 104091Seric ** 114091Seric ** Parameters: 124091Seric ** line -- header as a text line. 134091Seric ** def -- if set, this is a default value. 144091Seric ** 154091Seric ** Returns: 164091Seric ** flags for this header. 174091Seric ** 184091Seric ** Side Effects: 194091Seric ** The header is saved on the header list. 204319Seric ** Contents of 'line' are destroyed. 214091Seric */ 224091Seric 234091Seric chompheader(line, def) 244091Seric char *line; 254091Seric bool def; 264091Seric { 274091Seric register char *p; 284091Seric register HDR *h; 294091Seric HDR **hp; 304091Seric char *fname; 314091Seric char *fvalue; 324091Seric struct hdrinfo *hi; 339059Seric bool cond = FALSE; 3410689Seric BITMAP mopts; 357890Seric extern char *crackaddr(); 364091Seric 377677Seric # ifdef DEBUG 387677Seric if (tTd(31, 6)) 397677Seric printf("chompheader: %s\n", line); 407677Seric # endif DEBUG 417677Seric 424627Seric /* strip off options */ 4310689Seric clrbitmap(mopts); 444627Seric p = line; 454627Seric if (*p == '?') 464627Seric { 474627Seric /* have some */ 484627Seric register char *q = index(p + 1, *p); 494627Seric 504627Seric if (q != NULL) 514627Seric { 524627Seric *q++ = '\0'; 5310689Seric while (*++p != '\0') 5410689Seric setbitn(*p, mopts); 554627Seric p = q; 564627Seric } 574627Seric else 584627Seric syserr("chompheader: syntax error, line \"%s\"", line); 599059Seric cond = TRUE; 604627Seric } 614627Seric 624091Seric /* find canonical name */ 634627Seric fname = p; 644627Seric p = index(p, ':'); 6510118Seric if (p == NULL) 6610118Seric { 6710118Seric syserr("chompheader: syntax error, line \"%s\"", line); 6810118Seric return (0); 6910118Seric } 704091Seric fvalue = &p[1]; 714091Seric while (isspace(*--p)) 724091Seric continue; 734091Seric *++p = '\0'; 744091Seric makelower(fname); 754091Seric 764091Seric /* strip field value on front */ 774091Seric if (*fvalue == ' ') 784091Seric fvalue++; 794091Seric 804091Seric /* search header list for this header */ 819382Seric for (hp = &CurEnv->e_header, h = CurEnv->e_header; h != NULL; 829382Seric hp = &h->h_link, h = h->h_link) 834091Seric { 845187Seric if (strcmp(fname, h->h_field) == 0 && bitset(H_DEFAULT, h->h_flags)) 854091Seric break; 864091Seric } 874091Seric 884091Seric /* see if it is a known type */ 894091Seric for (hi = HdrInfo; hi->hi_field != NULL; hi++) 904091Seric { 914091Seric if (strcmp(hi->hi_field, fname) == 0) 924091Seric break; 934091Seric } 944091Seric 954091Seric /* if this means "end of header" quit now */ 964091Seric if (bitset(H_EOH, hi->hi_flags)) 974091Seric return (hi->hi_flags); 984091Seric 994091Seric /* create/fill in a new node */ 1005187Seric if (h == NULL || bitset(H_FORCE, h->h_flags)) 1014091Seric { 1024091Seric /* create a new node */ 1035187Seric h = (HDR *) xalloc(sizeof *h); 1044091Seric h->h_field = newstr(fname); 1054091Seric h->h_value = NULL; 1065187Seric h->h_link = *hp; 10710689Seric bcopy(mopts, h->h_mflags, sizeof mopts); 1085187Seric *hp = h; 1094091Seric } 1108066Seric h->h_flags = hi->hi_flags; 1114091Seric if (def) 1124091Seric h->h_flags |= H_DEFAULT; 1139059Seric if (cond) 1149059Seric h->h_flags |= H_CHECK; 1154091Seric if (h->h_value != NULL) 1169351Seric free((char *) h->h_value); 1178066Seric h->h_value = newstr(fvalue); 1184091Seric 1195937Seric /* hack to see if this is a new format message */ 1208095Seric if (!def && bitset(H_RCPT|H_FROM, h->h_flags) && 1215937Seric (index(fvalue, ',') != NULL || index(fvalue, '(') != NULL || 1228089Seric index(fvalue, '<') != NULL || index(fvalue, ';') != NULL)) 1238089Seric { 1249342Seric CurEnv->e_flags &= ~EF_OLDSTYLE; 1258089Seric } 1265937Seric 1278066Seric /* send to this person if we so desire */ 1288066Seric if (!def && GrabTo && bitset(H_RCPT, h->h_flags)) 1299620Seric sendtolist(h->h_value, (ADDRESS *) NULL, &CurEnv->e_sendqueue); 1308066Seric 1314091Seric return (h->h_flags); 1324091Seric } 1334091Seric /* 1346980Seric ** ADDHEADER -- add a header entry to the end of the queue. 1356980Seric ** 1366980Seric ** This bypasses the special checking of chompheader. 1376980Seric ** 1386980Seric ** Parameters: 1396980Seric ** field -- the name of the header field. 1406980Seric ** value -- the value of the field. It must be lower-cased. 1416980Seric ** e -- the envelope to add them to. 1426980Seric ** 1436980Seric ** Returns: 1446980Seric ** none. 1456980Seric ** 1466980Seric ** Side Effects: 1476980Seric ** adds the field on the list of headers for this envelope. 1486980Seric */ 1496980Seric 1506980Seric addheader(field, value, e) 1516980Seric char *field; 1526980Seric char *value; 1536980Seric ENVELOPE *e; 1546980Seric { 1556980Seric register HDR *h; 1566980Seric register struct hdrinfo *hi; 1576980Seric HDR **hp; 1586980Seric 1596980Seric /* find info struct */ 1606980Seric for (hi = HdrInfo; hi->hi_field != NULL; hi++) 1616980Seric { 1626980Seric if (strcmp(field, hi->hi_field) == 0) 1636980Seric break; 1646980Seric } 1656980Seric 1666980Seric /* find current place in list -- keep back pointer? */ 1676980Seric for (hp = &e->e_header; (h = *hp) != NULL; hp = &h->h_link) 1686980Seric { 1696980Seric if (strcmp(field, h->h_field) == 0) 1706980Seric break; 1716980Seric } 1726980Seric 1736980Seric /* allocate space for new header */ 1746980Seric h = (HDR *) xalloc(sizeof *h); 1756980Seric h->h_field = field; 1766980Seric h->h_value = newstr(value); 1777368Seric h->h_link = *hp; 1786980Seric h->h_flags = hi->hi_flags | H_DEFAULT; 17910689Seric clrbitmap(h->h_mflags); 1806980Seric *hp = h; 1816980Seric } 1826980Seric /* 1834091Seric ** HVALUE -- return value of a header. 1844091Seric ** 1854091Seric ** Only "real" fields (i.e., ones that have not been supplied 1864091Seric ** as a default) are used. 1874091Seric ** 1884091Seric ** Parameters: 1894091Seric ** field -- the field name. 1904091Seric ** 1914091Seric ** Returns: 1924091Seric ** pointer to the value part. 1934091Seric ** NULL if not found. 1944091Seric ** 1954091Seric ** Side Effects: 1969382Seric ** none. 1974091Seric */ 1984091Seric 1994091Seric char * 2004091Seric hvalue(field) 2014091Seric char *field; 2024091Seric { 2034091Seric register HDR *h; 2044091Seric 2056908Seric for (h = CurEnv->e_header; h != NULL; h = h->h_link) 2064091Seric { 2074091Seric if (!bitset(H_DEFAULT, h->h_flags) && strcmp(h->h_field, field) == 0) 2084091Seric return (h->h_value); 2094091Seric } 2104091Seric return (NULL); 2114091Seric } 2124091Seric /* 2134091Seric ** ISHEADER -- predicate telling if argument is a header. 2144091Seric ** 2154319Seric ** A line is a header if it has a single word followed by 2164319Seric ** optional white space followed by a colon. 2174319Seric ** 2184091Seric ** Parameters: 2194091Seric ** s -- string to check for possible headerness. 2204091Seric ** 2214091Seric ** Returns: 2224091Seric ** TRUE if s is a header. 2234091Seric ** FALSE otherwise. 2244091Seric ** 2254091Seric ** Side Effects: 2264091Seric ** none. 2274091Seric */ 2284091Seric 2294091Seric bool 2304091Seric isheader(s) 2314091Seric register char *s; 2324091Seric { 2339382Seric while (*s > ' ' && *s != ':' && *s != '\0') 2344091Seric s++; 2359382Seric 2369382Seric /* following technically violates RFC822 */ 2374091Seric while (isspace(*s)) 2384091Seric s++; 2399382Seric 2404091Seric return (*s == ':'); 2414091Seric } 2425919Seric /* 2437783Seric ** EATHEADER -- run through the stored header and extract info. 2447783Seric ** 2457783Seric ** Parameters: 2469382Seric ** e -- the envelope to process. 2477783Seric ** 2487783Seric ** Returns: 2497783Seric ** none. 2507783Seric ** 2517783Seric ** Side Effects: 2527783Seric ** Sets a bunch of global variables from information 2539382Seric ** in the collected header. 2549382Seric ** Aborts the message if the hop count is exceeded. 2557783Seric */ 2567783Seric 2579382Seric eatheader(e) 2589382Seric register ENVELOPE *e; 2597783Seric { 2607783Seric register HDR *h; 2617783Seric register char *p; 2629382Seric int hopcnt = 0; 2637783Seric 2649382Seric #ifdef DEBUG 2659382Seric if (tTd(32, 1)) 2669382Seric printf("----- collected header -----\n"); 2679382Seric #endif DEBUG 2689382Seric for (h = e->e_header; h != NULL; h = h->h_link) 2697783Seric { 2709382Seric #ifdef DEBUG 2717783Seric extern char *capitalize(); 2727783Seric 2739382Seric if (tTd(32, 1)) 2747783Seric printf("%s: %s\n", capitalize(h->h_field), h->h_value); 2759382Seric #endif DEBUG 2769382Seric if (bitset(H_TRACE, h->h_flags)) 2779382Seric hopcnt++; 278*11290Seric #ifdef LOG 279*11290Seric if (strcmp(h->h_field, "message-id") == 0 && LogLevel > 8) 280*11290Seric { 281*11290Seric char buf[MAXNAME]; 282*11290Seric 283*11290Seric p = h->h_value; 284*11290Seric if (bitset(H_DEFAULT, h->h_flags)) 285*11290Seric { 286*11290Seric expand(p, buf, &buf[sizeof buf], e); 287*11290Seric p = buf; 288*11290Seric } 289*11290Seric syslog(LOG_INFO, "%s: message-id=%s", e->e_id, p); 290*11290Seric } 291*11290Seric #endif LOG 2929382Seric } 2939382Seric #ifdef DEBUG 2949382Seric if (tTd(32, 1)) 2957783Seric printf("----------------------------\n"); 2969382Seric #endif DEBUG 2977783Seric 2989382Seric /* store hop count */ 2999382Seric if (hopcnt > e->e_hopcount) 3009382Seric e->e_hopcount = hopcnt; 3019382Seric 3027783Seric /* message priority */ 3039382Seric p = hvalue("precedence"); 3049382Seric if (p != NULL) 3059382Seric e->e_class = priencode(p); 3067783Seric if (!QueueRun) 3079382Seric e->e_msgpriority = e->e_msgsize - e->e_class * WKPRIFACT; 3087783Seric 3098066Seric /* return receipt to */ 3108066Seric p = hvalue("return-receipt-to"); 3117783Seric if (p != NULL) 3129382Seric e->e_receiptto = p; 3137783Seric 3148253Seric /* errors to */ 3158253Seric p = hvalue("errors-to"); 3168253Seric if (p != NULL) 3179620Seric sendtolist(p, (ADDRESS *) NULL, &e->e_errorqueue); 3188253Seric 3197783Seric /* from person */ 3209285Seric if (OpMode == MD_ARPAFTP) 3218066Seric { 3228066Seric register struct hdrinfo *hi = HdrInfo; 3237783Seric 3248066Seric for (p = NULL; p == NULL && hi->hi_field != NULL; hi++) 3258066Seric { 3268066Seric if (bitset(H_FROM, hi->hi_flags)) 3278066Seric p = hvalue(hi->hi_field); 3288066Seric } 3298066Seric if (p != NULL) 3309382Seric setsender(p); 3318066Seric } 3328066Seric 3337783Seric /* full name of from person */ 3347783Seric p = hvalue("full-name"); 3357783Seric if (p != NULL) 3369382Seric define('x', p, e); 3377783Seric 3387783Seric /* date message originated */ 3397783Seric p = hvalue("posted-date"); 3407783Seric if (p == NULL) 3417783Seric p = hvalue("date"); 3427783Seric if (p != NULL) 3437783Seric { 3449382Seric define('a', p, e); 3457783Seric /* we don't have a good way to do canonical conversion .... 3469382Seric define('d', newstr(arpatounix(p)), e); 3477783Seric .... so we will ignore the problem for the time being */ 3487783Seric } 349*11290Seric 350*11290Seric /* 351*11290Seric ** Log collection information. 352*11290Seric */ 353*11290Seric 354*11290Seric # ifdef LOG 355*11290Seric if (LogLevel > 1) 356*11290Seric { 357*11290Seric syslog(LOG_INFO, "%s: from=%s, size=%ld, class=%d\n", 358*11290Seric CurEnv->e_id, CurEnv->e_from.q_paddr, CurEnv->e_msgsize, 359*11290Seric CurEnv->e_class); 360*11290Seric } 361*11290Seric # endif LOG 3627783Seric } 3637783Seric /* 3647783Seric ** PRIENCODE -- encode external priority names into internal values. 3657783Seric ** 3667783Seric ** Parameters: 3677783Seric ** p -- priority in ascii. 3687783Seric ** 3697783Seric ** Returns: 3707783Seric ** priority as a numeric level. 3717783Seric ** 3727783Seric ** Side Effects: 3737783Seric ** none. 3747783Seric */ 3757783Seric 3767783Seric priencode(p) 3777783Seric char *p; 3787783Seric { 3798253Seric register int i; 3807783Seric extern bool sameword(); 3817783Seric 3828253Seric for (i = 0; i < NumPriorities; i++) 3837783Seric { 3848253Seric if (sameword(p, Priorities[i].pri_name)) 3858253Seric return (Priorities[i].pri_val); 3867783Seric } 3878253Seric 3888253Seric /* unknown priority */ 3898253Seric return (0); 3907783Seric } 3917783Seric /* 3927890Seric ** CRACKADDR -- parse an address and turn it into a macro 3937783Seric ** 3947783Seric ** This doesn't actually parse the address -- it just extracts 3957783Seric ** it and replaces it with "$g". The parse is totally ad hoc 3967783Seric ** and isn't even guaranteed to leave something syntactically 3977783Seric ** identical to what it started with. However, it does leave 3987783Seric ** something semantically identical. 3997783Seric ** 4007783Seric ** The process is kind of strange. There are a number of 4017783Seric ** interesting cases: 4027783Seric ** 1. comment <address> comment ==> comment <$g> comment 4037783Seric ** 2. address ==> address 4047783Seric ** 3. address (comment) ==> $g (comment) 4057783Seric ** 4. (comment) address ==> (comment) $g 4067783Seric ** And then there are the hard cases.... 4077783Seric ** 5. add (comment) ress ==> $g (comment) 4087783Seric ** 6. comment <address (comment)> ==> comment <$g (comment)> 4097783Seric ** 7. .... etc .... 4107783Seric ** 4117783Seric ** Parameters: 4127890Seric ** addr -- the address to be cracked. 4137783Seric ** 4147783Seric ** Returns: 4157783Seric ** a pointer to the new version. 4167783Seric ** 4177783Seric ** Side Effects: 4187890Seric ** none. 4197783Seric ** 4207783Seric ** Warning: 4217783Seric ** The return value is saved in local storage and should 4227783Seric ** be copied if it is to be reused. 4237783Seric */ 4247783Seric 4257783Seric char * 4267890Seric crackaddr(addr) 4277890Seric register char *addr; 4287783Seric { 4297783Seric register char *p; 4307783Seric register int i; 4317783Seric static char buf[MAXNAME]; 4327783Seric char *rhs; 4337783Seric bool gotaddr; 4347783Seric register char *bp; 4357783Seric 4367783Seric # ifdef DEBUG 4377783Seric if (tTd(33, 1)) 4387890Seric printf("crackaddr(%s)\n", addr); 4397783Seric # endif DEBUG 4407783Seric 4417783Seric strcpy(buf, ""); 4427783Seric rhs = NULL; 4437783Seric 4448082Seric /* strip leading spaces */ 4458082Seric while (*addr != '\0' && isspace(*addr)) 4468082Seric addr++; 4478082Seric 4487783Seric /* 4497783Seric ** See if we have anything in angle brackets. If so, that is 4507783Seric ** the address part, and the rest is the comment. 4517783Seric */ 4527783Seric 4537890Seric p = index(addr, '<'); 4547783Seric if (p != NULL) 4557783Seric { 4567890Seric /* copy the beginning of the addr field to the buffer */ 4577783Seric *p = '\0'; 4587890Seric strcpy(buf, addr); 4597783Seric strcat(buf, "<"); 4608082Seric *p++ = '<'; 4617783Seric 4628082Seric /* skip spaces */ 4638082Seric while (isspace(*p)) 4648082Seric p++; 4658082Seric 4667783Seric /* find the matching right angle bracket */ 4678082Seric addr = p; 4687783Seric for (i = 0; *p != '\0'; p++) 4697783Seric { 4707783Seric switch (*p) 4717783Seric { 4727783Seric case '<': 4737783Seric i++; 4747783Seric break; 4757783Seric 4767783Seric case '>': 4777783Seric i--; 4787783Seric break; 4797783Seric } 4807783Seric if (i < 0) 4817783Seric break; 4827783Seric } 4837783Seric 4847783Seric /* p now points to the closing quote (or a null byte) */ 4857783Seric if (*p != '\0') 4867783Seric { 4877783Seric /* make rhs point to the extra stuff at the end */ 4887783Seric rhs = p; 4897783Seric *p++ = '\0'; 4907783Seric } 4917783Seric } 4927783Seric 4937783Seric /* 4947944Seric ** Now parse the real address part. "addr" points to the (null 4957783Seric ** terminated) version of what we are inerested in; rhs points 4967783Seric ** to the extra stuff at the end of the line, if any. 4977783Seric */ 4987783Seric 4997890Seric p = addr; 5007783Seric 5017783Seric /* now strip out comments */ 5027783Seric bp = &buf[strlen(buf)]; 5037783Seric gotaddr = FALSE; 5047783Seric for (; *p != '\0'; p++) 5057783Seric { 5067783Seric if (*p == '(') 5077783Seric { 5087783Seric /* copy to matching close paren */ 5097783Seric *bp++ = *p++; 5107783Seric for (i = 0; *p != '\0'; p++) 5117783Seric { 5127783Seric *bp++ = *p; 5137783Seric switch (*p) 5147783Seric { 5157783Seric case '(': 5167783Seric i++; 5177783Seric break; 5187783Seric 5197783Seric case ')': 5207783Seric i--; 5217783Seric break; 5227783Seric } 5237783Seric if (i < 0) 5247783Seric break; 5257783Seric } 5267783Seric continue; 5277783Seric } 5287783Seric 5297783Seric /* 5307783Seric ** If this is the first "real" character we have seen, 5317783Seric ** then we put the "$g" in the buffer now. 5327783Seric */ 5337783Seric 5347783Seric if (isspace(*p)) 5357783Seric *bp++ = *p; 5367783Seric else if (!gotaddr) 5377783Seric { 5387783Seric strcpy(bp, "$g"); 5397783Seric bp += 2; 5407783Seric gotaddr = TRUE; 5417783Seric } 5427783Seric } 5437783Seric 5447944Seric /* hack, hack.... strip trailing blanks */ 5457944Seric do 5467944Seric { 5477944Seric *bp-- = '\0'; 5487944Seric } while (isspace(*bp)); 5497944Seric bp++; 5507783Seric 5517944Seric /* put any right hand side back on */ 5527783Seric if (rhs != NULL) 5537783Seric { 5547783Seric *rhs = '>'; 5557783Seric strcpy(bp, rhs); 5567783Seric } 5577783Seric 5587783Seric # ifdef DEBUG 5597783Seric if (tTd(33, 1)) 5607944Seric printf("crackaddr=>`%s'\n", buf); 5617783Seric # endif DEBUG 5627783Seric 5637783Seric return (buf); 5647783Seric } 5659382Seric /* 5669382Seric ** PUTHEADER -- put the header part of a message from the in-core copy 5679382Seric ** 5689382Seric ** Parameters: 5699382Seric ** fp -- file to put it on. 5709382Seric ** m -- mailer to use. 5719382Seric ** e -- envelope to use. 5729382Seric ** 5739382Seric ** Returns: 5749382Seric ** none. 5759382Seric ** 5769382Seric ** Side Effects: 5779382Seric ** none. 5789382Seric */ 5799382Seric 58010176Seric putheader(fp, m, e) 5819382Seric register FILE *fp; 5829382Seric register MAILER *m; 5839382Seric register ENVELOPE *e; 5849382Seric { 5859382Seric char buf[BUFSIZ]; 5869382Seric register HDR *h; 5879382Seric extern char *arpadate(); 5889382Seric extern char *capitalize(); 5899382Seric char obuf[MAXLINE]; 5909382Seric 5919382Seric for (h = e->e_header; h != NULL; h = h->h_link) 5929382Seric { 5939382Seric register char *p; 59410689Seric extern bool bitintersect(); 5959382Seric 5969382Seric if (bitset(H_CHECK|H_ACHECK, h->h_flags) && 59710689Seric !bitintersect(h->h_mflags, m->m_flags)) 5989382Seric continue; 5999382Seric 6009382Seric p = h->h_value; 6019382Seric if (bitset(H_DEFAULT, h->h_flags)) 6029382Seric { 6039382Seric /* macro expand value if generated internally */ 6049382Seric expand(p, buf, &buf[sizeof buf], e); 6059382Seric p = buf; 6069382Seric if (p == NULL || *p == '\0') 6079382Seric continue; 6089382Seric } 6099382Seric 6109382Seric if (bitset(H_FROM|H_RCPT, h->h_flags)) 6119382Seric { 6129382Seric /* address field */ 6139382Seric bool oldstyle = bitset(EF_OLDSTYLE, e->e_flags); 6149382Seric 6159382Seric if (bitset(H_FROM, h->h_flags)) 6169382Seric oldstyle = FALSE; 61710176Seric commaize(h, p, fp, oldstyle, m); 6189382Seric } 6199382Seric else 6209382Seric { 6219382Seric /* vanilla header line */ 6229382Seric (void) sprintf(obuf, "%s: %s\n", capitalize(h->h_field), p); 62310176Seric putline(obuf, fp, m); 6249382Seric } 6259382Seric } 6269382Seric } 6279382Seric /* 6289382Seric ** COMMAIZE -- output a header field, making a comma-translated list. 6299382Seric ** 6309382Seric ** Parameters: 6319382Seric ** h -- the header field to output. 6329382Seric ** p -- the value to put in it. 6339382Seric ** fp -- file to put it to. 6349382Seric ** oldstyle -- TRUE if this is an old style header. 6359382Seric ** m -- a pointer to the mailer descriptor. If NULL, 6369382Seric ** don't transform the name at all. 6379382Seric ** 6389382Seric ** Returns: 6399382Seric ** none. 6409382Seric ** 6419382Seric ** Side Effects: 6429382Seric ** outputs "p" to file "fp". 6439382Seric */ 6449382Seric 64510176Seric commaize(h, p, fp, oldstyle, m) 6469382Seric register HDR *h; 6479382Seric register char *p; 6489382Seric FILE *fp; 6499382Seric bool oldstyle; 6509382Seric register MAILER *m; 6519382Seric { 6529382Seric register char *obp; 6539382Seric int opos; 6549382Seric bool firstone = TRUE; 65511157Seric char obuf[MAXLINE + 3]; 6569382Seric 6579382Seric /* 6589382Seric ** Output the address list translated by the 6599382Seric ** mailer and with commas. 6609382Seric */ 6619382Seric 6629382Seric # ifdef DEBUG 6639382Seric if (tTd(14, 2)) 6649382Seric printf("commaize(%s: %s)\n", h->h_field, p); 6659382Seric # endif DEBUG 6669382Seric 6679382Seric obp = obuf; 6689382Seric (void) sprintf(obp, "%s: ", capitalize(h->h_field)); 6699382Seric opos = strlen(h->h_field) + 2; 6709382Seric obp += opos; 6719382Seric 6729382Seric /* 6739382Seric ** Run through the list of values. 6749382Seric */ 6759382Seric 6769382Seric while (*p != '\0') 6779382Seric { 6789382Seric register char *name; 6799382Seric char savechar; 6809382Seric extern char *remotename(); 6819382Seric extern char *DelimChar; /* defined in prescan */ 6829382Seric 6839382Seric /* 6849382Seric ** Find the end of the name. New style names 6859382Seric ** end with a comma, old style names end with 6869382Seric ** a space character. However, spaces do not 6879382Seric ** necessarily delimit an old-style name -- at 6889382Seric ** signs mean keep going. 6899382Seric */ 6909382Seric 6919382Seric /* find end of name */ 6929382Seric while (isspace(*p) || *p == ',') 6939382Seric p++; 6949382Seric name = p; 6959382Seric for (;;) 6969382Seric { 6979382Seric char *oldp; 6989382Seric extern bool isatword(); 6999382Seric extern char **prescan(); 7009382Seric 7019382Seric (void) prescan(p, oldstyle ? ' ' : ','); 7029382Seric p = DelimChar; 7039382Seric 7049382Seric /* look to see if we have an at sign */ 7059382Seric oldp = p; 7069382Seric while (*p != '\0' && isspace(*p)) 7079382Seric p++; 7089382Seric 7099382Seric if (*p != '@' && !isatword(p)) 7109382Seric { 7119382Seric p = oldp; 7129382Seric break; 7139382Seric } 7149382Seric p += *p == '@' ? 1 : 2; 7159382Seric while (*p != '\0' && isspace(*p)) 7169382Seric p++; 7179382Seric } 7189382Seric /* at the end of one complete name */ 7199382Seric 7209382Seric /* strip off trailing white space */ 7219382Seric while (p >= name && (isspace(*p) || *p == ',' || *p == '\0')) 7229382Seric p--; 7239382Seric if (++p == name) 7249382Seric continue; 7259382Seric savechar = *p; 7269382Seric *p = '\0'; 7279382Seric 7289382Seric /* translate the name to be relative */ 72910309Seric name = remotename(name, m, bitset(H_FROM, h->h_flags), FALSE); 7309382Seric if (*name == '\0') 7319382Seric { 7329382Seric *p = savechar; 7339382Seric continue; 7349382Seric } 7359382Seric 7369382Seric /* output the name with nice formatting */ 7379382Seric opos += qstrlen(name); 7389382Seric if (!firstone) 7399382Seric opos += 2; 7409382Seric if (opos > 78 && !firstone) 7419382Seric { 74210178Seric (void) strcpy(obp, ",\n"); 74310176Seric putline(obuf, fp, m); 7449382Seric obp = obuf; 7459382Seric (void) sprintf(obp, " "); 74610161Seric opos = strlen(obp); 74710161Seric obp += opos; 74810161Seric opos += qstrlen(name); 7499382Seric } 7509382Seric else if (!firstone) 7519382Seric { 7529382Seric (void) sprintf(obp, ", "); 7539382Seric obp += 2; 7549382Seric } 7559382Seric 7569382Seric /* strip off quote bits as we output */ 75711157Seric while (*name != '\0' && obp < &obuf[MAXLINE]) 7589382Seric { 7599382Seric if (bitset(0200, *name)) 7609382Seric *obp++ = '\\'; 7619382Seric *obp++ = *name++ & ~0200; 7629382Seric } 7639382Seric firstone = FALSE; 7649382Seric *p = savechar; 7659382Seric } 7669382Seric (void) strcpy(obp, "\n"); 76710176Seric putline(obuf, fp, m); 7689382Seric } 7699382Seric /* 7709382Seric ** ISATWORD -- tell if the word we are pointing to is "at". 7719382Seric ** 7729382Seric ** Parameters: 7739382Seric ** p -- word to check. 7749382Seric ** 7759382Seric ** Returns: 7769382Seric ** TRUE -- if p is the word at. 7779382Seric ** FALSE -- otherwise. 7789382Seric ** 7799382Seric ** Side Effects: 7809382Seric ** none. 7819382Seric */ 7829382Seric 7839382Seric bool 7849382Seric isatword(p) 7859382Seric register char *p; 7869382Seric { 7879382Seric extern char lower(); 7889382Seric 7899382Seric if (lower(p[0]) == 'a' && lower(p[1]) == 't' && 7909382Seric p[2] != '\0' && isspace(p[2])) 7919382Seric return (TRUE); 7929382Seric return (FALSE); 7939382Seric } 794