Home | History | Annotate | Line # | Download | only in mail
send.c revision 1.21
      1  1.21       agc /*	$NetBSD: send.c,v 1.21 2003/08/07 11:14:41 agc Exp $	*/
      2   1.6  christos 
      3   1.1       cgd /*
      4   1.4   deraadt  * Copyright (c) 1980, 1993
      5   1.4   deraadt  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.21       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  */
     31   1.1       cgd 
     32   1.7     lukem #include <sys/cdefs.h>
     33   1.1       cgd #ifndef lint
     34   1.6  christos #if 0
     35   1.6  christos static char sccsid[] = "@(#)send.c	8.1 (Berkeley) 6/6/93";
     36   1.6  christos #else
     37  1.21       agc __RCSID("$NetBSD: send.c,v 1.21 2003/08/07 11:14:41 agc Exp $");
     38   1.6  christos #endif
     39   1.1       cgd #endif /* not lint */
     40   1.1       cgd 
     41   1.1       cgd #include "rcv.h"
     42   1.4   deraadt #include "extern.h"
     43   1.1       cgd 
     44   1.1       cgd /*
     45   1.1       cgd  * Mail -- a mail program
     46   1.1       cgd  *
     47   1.1       cgd  * Mail to others.
     48   1.1       cgd  */
     49   1.1       cgd 
     50  1.20       wiz extern char *tmpdir;
     51  1.13  christos 
     52   1.1       cgd /*
     53   1.1       cgd  * Send message described by the passed pointer to the
     54   1.1       cgd  * passed output buffer.  Return -1 on error.
     55   1.1       cgd  * Adjust the status: field if need be.
     56   1.1       cgd  * If doign is given, suppress ignored header fields.
     57   1.1       cgd  * prefix is a string to prepend to each output line.
     58   1.1       cgd  */
     59   1.4   deraadt int
     60  1.14       wiz sendmessage(struct message *mp, FILE *obuf, struct ignoretab *doign,
     61  1.14       wiz 	    char *prefix)
     62   1.1       cgd {
     63  1.15       wiz 	long len;
     64   1.7     lukem 	FILE *ibuf;
     65   1.1       cgd 	char line[LINESIZE];
     66  1.15       wiz 	int isheadflag, infld, ignoring = 0, dostat, firstline;
     67   1.7     lukem 	char *cp, *cp2;
     68   1.7     lukem 	int c = 0;
     69   1.1       cgd 	int length;
     70   1.6  christos 	int prefixlen = 0;
     71   1.1       cgd 
     72   1.1       cgd 	/*
     73   1.1       cgd 	 * Compute the prefix string, without trailing whitespace
     74   1.1       cgd 	 */
     75  1.16       wiz 	if (prefix != NULL) {
     76   1.1       cgd 		cp2 = 0;
     77   1.1       cgd 		for (cp = prefix; *cp; cp++)
     78   1.1       cgd 			if (*cp != ' ' && *cp != '\t')
     79   1.1       cgd 				cp2 = cp;
     80   1.1       cgd 		prefixlen = cp2 == 0 ? 0 : cp2 - prefix + 1;
     81   1.1       cgd 	}
     82   1.1       cgd 	ibuf = setinput(mp);
     83  1.15       wiz 	len = mp->m_size;
     84  1.15       wiz 	isheadflag = 1;
     85   1.1       cgd 	dostat = doign == 0 || !isign("status", doign);
     86   1.1       cgd 	infld = 0;
     87   1.1       cgd 	firstline = 1;
     88   1.1       cgd 	/*
     89   1.1       cgd 	 * Process headers first
     90   1.1       cgd 	 */
     91  1.15       wiz 	while (len > 0 && isheadflag) {
     92   1.1       cgd 		if (fgets(line, LINESIZE, ibuf) == NULL)
     93   1.1       cgd 			break;
     94  1.15       wiz 		len -= length = strlen(line);
     95   1.1       cgd 		if (firstline) {
     96   1.1       cgd 			/*
     97   1.1       cgd 			 * First line is the From line, so no headers
     98   1.1       cgd 			 * there to worry about
     99   1.1       cgd 			 */
    100   1.1       cgd 			firstline = 0;
    101   1.1       cgd 			ignoring = doign == ignoreall;
    102   1.1       cgd 		} else if (line[0] == '\n') {
    103   1.1       cgd 			/*
    104   1.1       cgd 			 * If line is blank, we've reached end of
    105   1.1       cgd 			 * headers, so force out status: field
    106   1.1       cgd 			 * and note that we are no longer in header
    107   1.1       cgd 			 * fields
    108   1.1       cgd 			 */
    109   1.1       cgd 			if (dostat) {
    110   1.1       cgd 				statusput(mp, obuf, prefix);
    111   1.1       cgd 				dostat = 0;
    112   1.1       cgd 			}
    113  1.15       wiz 			isheadflag = 0;
    114   1.1       cgd 			ignoring = doign == ignoreall;
    115   1.1       cgd 		} else if (infld && (line[0] == ' ' || line[0] == '\t')) {
    116   1.1       cgd 			/*
    117   1.1       cgd 			 * If this line is a continuation (via space or tab)
    118   1.1       cgd 			 * of a previous header field, just echo it
    119   1.1       cgd 			 * (unless the field should be ignored).
    120   1.1       cgd 			 * In other words, nothing to do.
    121   1.1       cgd 			 */
    122   1.1       cgd 		} else {
    123   1.1       cgd 			/*
    124   1.1       cgd 			 * Pick up the header field if we have one.
    125   1.1       cgd 			 */
    126   1.1       cgd 			for (cp = line; (c = *cp++) && c != ':' && !isspace(c);)
    127   1.1       cgd 				;
    128   1.1       cgd 			cp2 = --cp;
    129  1.10  christos 			while (isspace((unsigned char)*cp++))
    130   1.1       cgd 				;
    131   1.1       cgd 			if (cp[-1] != ':') {
    132   1.1       cgd 				/*
    133   1.1       cgd 				 * Not a header line, force out status:
    134   1.1       cgd 				 * This happens in uucp style mail where
    135   1.1       cgd 				 * there are no headers at all.
    136   1.1       cgd 				 */
    137   1.1       cgd 				if (dostat) {
    138   1.1       cgd 					statusput(mp, obuf, prefix);
    139   1.1       cgd 					dostat = 0;
    140   1.1       cgd 				}
    141   1.1       cgd 				if (doign != ignoreall)
    142   1.1       cgd 					/* add blank line */
    143  1.18       wiz 					(void)putc('\n', obuf);
    144  1.15       wiz 				isheadflag = 0;
    145   1.1       cgd 				ignoring = 0;
    146   1.1       cgd 			} else {
    147   1.1       cgd 				/*
    148   1.1       cgd 				 * If it is an ignored field and
    149   1.1       cgd 				 * we care about such things, skip it.
    150   1.1       cgd 				 */
    151   1.1       cgd 				*cp2 = 0;	/* temporarily null terminate */
    152   1.1       cgd 				if (doign && isign(line, doign))
    153   1.1       cgd 					ignoring = 1;
    154   1.1       cgd 				else if ((line[0] == 's' || line[0] == 'S') &&
    155   1.1       cgd 					 strcasecmp(line, "status") == 0) {
    156   1.1       cgd 					/*
    157   1.1       cgd 					 * If the field is "status," go compute
    158   1.1       cgd 					 * and print the real Status: field
    159   1.1       cgd 					 */
    160   1.1       cgd 					if (dostat) {
    161   1.1       cgd 						statusput(mp, obuf, prefix);
    162   1.1       cgd 						dostat = 0;
    163   1.1       cgd 					}
    164   1.1       cgd 					ignoring = 1;
    165   1.1       cgd 				} else {
    166   1.1       cgd 					ignoring = 0;
    167   1.1       cgd 					*cp2 = c;	/* restore */
    168   1.1       cgd 				}
    169   1.1       cgd 				infld = 1;
    170   1.1       cgd 			}
    171   1.1       cgd 		}
    172   1.1       cgd 		if (!ignoring) {
    173   1.1       cgd 			/*
    174   1.1       cgd 			 * Strip trailing whitespace from prefix
    175   1.1       cgd 			 * if line is blank.
    176   1.1       cgd 			 */
    177  1.16       wiz 			if (prefix != NULL) {
    178   1.1       cgd 				if (length > 1)
    179   1.1       cgd 					fputs(prefix, obuf);
    180   1.1       cgd 				else
    181  1.18       wiz 					(void)fwrite(prefix, sizeof *prefix,
    182   1.1       cgd 							prefixlen, obuf);
    183   1.9      ross 			}
    184  1.18       wiz 			(void)fwrite(line, sizeof *line, length, obuf);
    185   1.1       cgd 			if (ferror(obuf))
    186   1.1       cgd 				return -1;
    187   1.1       cgd 		}
    188   1.1       cgd 	}
    189   1.1       cgd 	/*
    190   1.1       cgd 	 * Copy out message body
    191   1.1       cgd 	 */
    192   1.1       cgd 	if (doign == ignoreall)
    193  1.15       wiz 		len--;		/* skip final blank line */
    194  1.16       wiz 	if (prefix != NULL)
    195  1.15       wiz 		while (len > 0) {
    196   1.1       cgd 			if (fgets(line, LINESIZE, ibuf) == NULL) {
    197   1.1       cgd 				c = 0;
    198   1.1       cgd 				break;
    199   1.1       cgd 			}
    200  1.15       wiz 			len -= c = strlen(line);
    201   1.1       cgd 			/*
    202   1.1       cgd 			 * Strip trailing whitespace from prefix
    203   1.1       cgd 			 * if line is blank.
    204   1.1       cgd 			 */
    205   1.1       cgd 			if (c > 1)
    206   1.1       cgd 				fputs(prefix, obuf);
    207   1.1       cgd 			else
    208  1.18       wiz 				(void)fwrite(prefix, sizeof *prefix,
    209   1.1       cgd 						prefixlen, obuf);
    210  1.18       wiz 			(void)fwrite(line, sizeof *line, c, obuf);
    211   1.1       cgd 			if (ferror(obuf))
    212   1.1       cgd 				return -1;
    213   1.1       cgd 		}
    214   1.1       cgd 	else
    215  1.15       wiz 		while (len > 0) {
    216  1.15       wiz 			c = len < LINESIZE ? len : LINESIZE;
    217   1.1       cgd 			if ((c = fread(line, sizeof *line, c, ibuf)) <= 0)
    218   1.1       cgd 				break;
    219  1.15       wiz 			len -= c;
    220   1.1       cgd 			if (fwrite(line, sizeof *line, c, obuf) != c)
    221   1.1       cgd 				return -1;
    222   1.1       cgd 		}
    223   1.1       cgd 	if (doign == ignoreall && c > 0 && line[c - 1] != '\n')
    224   1.1       cgd 		/* no final blank line */
    225   1.1       cgd 		if ((c = getc(ibuf)) != EOF && putc(c, obuf) == EOF)
    226   1.1       cgd 			return -1;
    227   1.1       cgd 	return 0;
    228   1.1       cgd }
    229   1.1       cgd 
    230   1.1       cgd /*
    231   1.1       cgd  * Output a reasonable looking status field.
    232   1.1       cgd  */
    233   1.4   deraadt void
    234  1.14       wiz statusput(struct message *mp, FILE *obuf, char *prefix)
    235   1.1       cgd {
    236   1.1       cgd 	char statout[3];
    237   1.7     lukem 	char *cp = statout;
    238   1.1       cgd 
    239   1.1       cgd 	if (mp->m_flag & MREAD)
    240   1.1       cgd 		*cp++ = 'R';
    241   1.1       cgd 	if ((mp->m_flag & MNEW) == 0)
    242   1.1       cgd 		*cp++ = 'O';
    243   1.1       cgd 	*cp = 0;
    244   1.1       cgd 	if (statout[0])
    245   1.1       cgd 		fprintf(obuf, "%sStatus: %s\n",
    246  1.16       wiz 			prefix == NULL ? "" : prefix, statout);
    247   1.1       cgd }
    248   1.1       cgd 
    249   1.1       cgd /*
    250   1.1       cgd  * Interface between the argument list and the mail1 routine
    251   1.1       cgd  * which does all the dirty work.
    252   1.1       cgd  */
    253   1.4   deraadt int
    254  1.14       wiz mail(struct name *to, struct name *cc, struct name *bcc,
    255  1.14       wiz      struct name *smopts, char *subject)
    256   1.1       cgd {
    257   1.1       cgd 	struct header head;
    258   1.1       cgd 
    259   1.1       cgd 	head.h_to = to;
    260   1.1       cgd 	head.h_subject = subject;
    261   1.1       cgd 	head.h_cc = cc;
    262   1.1       cgd 	head.h_bcc = bcc;
    263   1.1       cgd 	head.h_smopts = smopts;
    264   1.1       cgd 	mail1(&head, 0);
    265   1.1       cgd 	return(0);
    266   1.1       cgd }
    267   1.1       cgd 
    268   1.1       cgd 
    269   1.1       cgd /*
    270   1.1       cgd  * Send mail to a bunch of user names.  The interface is through
    271   1.1       cgd  * the mail routine below.
    272   1.1       cgd  */
    273   1.4   deraadt int
    274  1.14       wiz sendmail(void *v)
    275   1.1       cgd {
    276   1.6  christos 	char *str = v;
    277   1.1       cgd 	struct header head;
    278   1.1       cgd 
    279   1.1       cgd 	head.h_to = extract(str, GTO);
    280  1.16       wiz 	head.h_subject = NULL;
    281  1.17       wiz 	head.h_cc = NULL;
    282  1.17       wiz 	head.h_bcc = NULL;
    283  1.17       wiz 	head.h_smopts = NULL;
    284   1.1       cgd 	mail1(&head, 0);
    285   1.1       cgd 	return(0);
    286   1.1       cgd }
    287   1.1       cgd 
    288   1.1       cgd /*
    289   1.1       cgd  * Mail a message on standard input to the people indicated
    290   1.1       cgd  * in the passed header.  (Internal interface).
    291   1.1       cgd  */
    292   1.4   deraadt void
    293  1.14       wiz mail1(struct header *hp, int printheaders)
    294   1.1       cgd {
    295   1.1       cgd 	char *cp;
    296   1.1       cgd 	int pid;
    297   1.1       cgd 	char **namelist;
    298   1.1       cgd 	struct name *to;
    299   1.1       cgd 	FILE *mtf;
    300   1.1       cgd 
    301   1.1       cgd 	/*
    302   1.1       cgd 	 * Collect user's mail from standard input.
    303   1.1       cgd 	 * Get the result as mtf.
    304   1.1       cgd 	 */
    305   1.1       cgd 	if ((mtf = collect(hp, printheaders)) == NULL)
    306   1.1       cgd 		return;
    307  1.16       wiz 	if (value("interactive") != NULL) {
    308  1.16       wiz 		if (value("askcc") != NULL || value("askbcc") != NULL) {
    309  1.16       wiz 			if (value("askcc") != NULL)
    310   1.3       jtc 				grabh(hp, GCC);
    311  1.16       wiz 			if (value("askbcc") != NULL)
    312   1.3       jtc 				grabh(hp, GBCC);
    313   1.3       jtc 		} else {
    314   1.1       cgd 			printf("EOT\n");
    315  1.18       wiz 			(void)fflush(stdout);
    316   1.1       cgd 		}
    317   1.9      ross 	}
    318   1.9      ross 	if (fsize(mtf) == 0) {
    319  1.16       wiz 		if (value("dontsendempty") != NULL)
    320  1.12  christos 			goto out;
    321  1.16       wiz 		if (hp->h_subject == NULL)
    322   1.1       cgd 			printf("No message, no subject; hope that's ok\n");
    323   1.1       cgd 		else
    324   1.1       cgd 			printf("Null message body; hope that's ok\n");
    325   1.9      ross 	}
    326   1.1       cgd 	/*
    327   1.1       cgd 	 * Now, take the user names from the combined
    328   1.1       cgd 	 * to and cc lists and do all the alias
    329   1.1       cgd 	 * processing.
    330   1.1       cgd 	 */
    331   1.1       cgd 	senderr = 0;
    332   1.1       cgd 	to = usermap(cat(hp->h_bcc, cat(hp->h_to, hp->h_cc)));
    333  1.17       wiz 	if (to == NULL) {
    334   1.1       cgd 		printf("No recipients specified\n");
    335   1.1       cgd 		senderr++;
    336   1.1       cgd 	}
    337   1.1       cgd 	/*
    338   1.1       cgd 	 * Look through the recipient list for names with /'s
    339   1.1       cgd 	 * in them which we write to as files directly.
    340   1.1       cgd 	 */
    341   1.1       cgd 	to = outof(to, mtf, hp);
    342   1.1       cgd 	if (senderr)
    343   1.1       cgd 		savedeadletter(mtf);
    344   1.1       cgd 	to = elide(to);
    345   1.1       cgd 	if (count(to) == 0)
    346   1.1       cgd 		goto out;
    347   1.1       cgd 	fixhead(hp, to);
    348   1.1       cgd 	if ((mtf = infix(hp, mtf)) == NULL) {
    349   1.1       cgd 		fprintf(stderr, ". . . message lost, sorry.\n");
    350   1.1       cgd 		return;
    351   1.1       cgd 	}
    352   1.1       cgd 	namelist = unpack(cat(hp->h_smopts, to));
    353   1.1       cgd 	if (debug) {
    354   1.1       cgd 		char **t;
    355   1.1       cgd 
    356   1.1       cgd 		printf("Sendmail arguments:");
    357  1.16       wiz 		for (t = namelist; *t != NULL; t++)
    358   1.1       cgd 			printf(" \"%s\"", *t);
    359   1.1       cgd 		printf("\n");
    360   1.1       cgd 		goto out;
    361   1.1       cgd 	}
    362  1.16       wiz 	if ((cp = value("record")) != NULL)
    363  1.18       wiz 		(void)savemail(expand(cp), mtf);
    364   1.1       cgd 	/*
    365   1.1       cgd 	 * Fork, set up the temporary mail file as standard
    366   1.1       cgd 	 * input for "mail", and exec with the user list we generated
    367   1.1       cgd 	 * far above.
    368   1.1       cgd 	 */
    369   1.1       cgd 	pid = fork();
    370   1.1       cgd 	if (pid == -1) {
    371  1.19       wiz 		warn("fork");
    372   1.1       cgd 		savedeadletter(mtf);
    373   1.1       cgd 		goto out;
    374   1.1       cgd 	}
    375   1.1       cgd 	if (pid == 0) {
    376   1.6  christos 		sigset_t nset;
    377   1.6  christos 		sigemptyset(&nset);
    378   1.6  christos 		sigaddset(&nset, SIGHUP);
    379   1.6  christos 		sigaddset(&nset, SIGINT);
    380   1.6  christos 		sigaddset(&nset, SIGQUIT);
    381   1.6  christos 		sigaddset(&nset, SIGTSTP);
    382   1.6  christos 		sigaddset(&nset, SIGTTIN);
    383   1.6  christos 		sigaddset(&nset, SIGTTOU);
    384   1.6  christos 		prepare_child(&nset, fileno(mtf), -1);
    385  1.16       wiz 		if ((cp = value("sendmail")) != NULL)
    386   1.1       cgd 			cp = expand(cp);
    387   1.1       cgd 		else
    388   1.1       cgd 			cp = _PATH_SENDMAIL;
    389   1.1       cgd 		execv(cp, namelist);
    390  1.19       wiz 		warn("%s", cp);
    391   1.1       cgd 		_exit(1);
    392   1.1       cgd 	}
    393  1.16       wiz 	if (value("verbose") != NULL)
    394  1.18       wiz 		(void)wait_child(pid);
    395   1.1       cgd 	else
    396   1.1       cgd 		free_child(pid);
    397   1.1       cgd out:
    398  1.18       wiz 	(void)Fclose(mtf);
    399   1.1       cgd }
    400   1.1       cgd 
    401   1.1       cgd /*
    402   1.1       cgd  * Fix the header by glopping all of the expanded names from
    403   1.1       cgd  * the distribution list into the appropriate fields.
    404   1.1       cgd  */
    405   1.4   deraadt void
    406  1.14       wiz fixhead(struct header *hp, struct name *tolist)
    407   1.1       cgd {
    408   1.7     lukem 	struct name *np;
    409   1.1       cgd 
    410  1.17       wiz 	hp->h_to = NULL;
    411  1.17       wiz 	hp->h_cc = NULL;
    412  1.17       wiz 	hp->h_bcc = NULL;
    413  1.17       wiz 	for (np = tolist; np != NULL; np = np->n_flink) {
    414   1.8       bad 		if (np->n_type & GDEL)
    415   1.8       bad 			continue;	/* Don't copy deleted addresses to the header */
    416   1.1       cgd 		if ((np->n_type & GMASK) == GTO)
    417   1.1       cgd 			hp->h_to =
    418   1.1       cgd 				cat(hp->h_to, nalloc(np->n_name, np->n_type));
    419   1.1       cgd 		else if ((np->n_type & GMASK) == GCC)
    420   1.1       cgd 			hp->h_cc =
    421   1.1       cgd 				cat(hp->h_cc, nalloc(np->n_name, np->n_type));
    422   1.1       cgd 		else if ((np->n_type & GMASK) == GBCC)
    423   1.1       cgd 			hp->h_bcc =
    424   1.1       cgd 				cat(hp->h_bcc, nalloc(np->n_name, np->n_type));
    425   1.8       bad 	}
    426   1.1       cgd }
    427   1.1       cgd 
    428   1.1       cgd /*
    429   1.1       cgd  * Prepend a header in front of the collected stuff
    430   1.1       cgd  * and return the new file.
    431   1.1       cgd  */
    432   1.1       cgd FILE *
    433  1.14       wiz infix(struct header *hp, FILE *fi)
    434   1.1       cgd {
    435   1.7     lukem 	FILE *nfo, *nfi;
    436  1.20       wiz 	int c, fd;
    437  1.20       wiz 	char tempname[PATHSIZE];
    438   1.1       cgd 
    439  1.20       wiz 	(void)snprintf(tempname, sizeof(tempname),
    440  1.20       wiz 	    "%s/mail.RsXXXXXXXXXX", tmpdir);
    441  1.20       wiz 	if ((fd = mkstemp(tempname)) == -1 ||
    442  1.20       wiz 	    (nfo = Fdopen(fd, "w")) == NULL) {
    443  1.20       wiz 		if (fd != -1)
    444  1.20       wiz 			close(fd);
    445  1.20       wiz 		warn("%s", tempname);
    446   1.1       cgd 		return(fi);
    447   1.1       cgd 	}
    448  1.20       wiz 	if ((nfi = Fopen(tempname, "r")) == NULL) {
    449  1.20       wiz 		warn("%s", tempname);
    450  1.18       wiz 		(void)Fclose(nfo);
    451  1.20       wiz 		(void)rm(tempname);
    452   1.1       cgd 		return(fi);
    453   1.1       cgd 	}
    454  1.20       wiz 	(void)rm(tempname);
    455  1.18       wiz 	(void)puthead(hp, nfo, GTO|GSUBJECT|GCC|GBCC|GNL|GCOMMA);
    456   1.1       cgd 	c = getc(fi);
    457   1.1       cgd 	while (c != EOF) {
    458  1.18       wiz 		(void)putc(c, nfo);
    459   1.1       cgd 		c = getc(fi);
    460   1.1       cgd 	}
    461   1.1       cgd 	if (ferror(fi)) {
    462  1.19       wiz 		warn("read");
    463   1.1       cgd 		rewind(fi);
    464   1.1       cgd 		return(fi);
    465   1.1       cgd 	}
    466  1.18       wiz 	(void)fflush(nfo);
    467   1.1       cgd 	if (ferror(nfo)) {
    468  1.20       wiz 		warn("%s", tempname);
    469  1.18       wiz 		(void)Fclose(nfo);
    470  1.18       wiz 		(void)Fclose(nfi);
    471   1.1       cgd 		rewind(fi);
    472   1.1       cgd 		return(fi);
    473   1.1       cgd 	}
    474  1.18       wiz 	(void)Fclose(nfo);
    475  1.18       wiz 	(void)Fclose(fi);
    476   1.1       cgd 	rewind(nfi);
    477   1.1       cgd 	return(nfi);
    478   1.1       cgd }
    479   1.1       cgd 
    480   1.1       cgd /*
    481   1.1       cgd  * Dump the to, subject, cc header on the
    482   1.1       cgd  * passed file buffer.
    483   1.1       cgd  */
    484   1.4   deraadt int
    485  1.14       wiz puthead(struct header *hp, FILE *fo, int w)
    486   1.1       cgd {
    487   1.7     lukem 	int gotcha;
    488   1.1       cgd 
    489   1.1       cgd 	gotcha = 0;
    490  1.17       wiz 	if (hp->h_to != NULL && w & GTO)
    491   1.1       cgd 		fmt("To:", hp->h_to, fo, w&GCOMMA), gotcha++;
    492  1.16       wiz 	if (hp->h_subject != NULL && w & GSUBJECT)
    493   1.1       cgd 		fprintf(fo, "Subject: %s\n", hp->h_subject), gotcha++;
    494  1.17       wiz 	if (hp->h_cc != NULL && w & GCC)
    495   1.1       cgd 		fmt("Cc:", hp->h_cc, fo, w&GCOMMA), gotcha++;
    496  1.17       wiz 	if (hp->h_bcc != NULL && w & GBCC)
    497   1.1       cgd 		fmt("Bcc:", hp->h_bcc, fo, w&GCOMMA), gotcha++;
    498   1.1       cgd 	if (gotcha && w & GNL)
    499  1.18       wiz 		(void)putc('\n', fo);
    500   1.1       cgd 	return(0);
    501   1.1       cgd }
    502   1.1       cgd 
    503   1.1       cgd /*
    504   1.1       cgd  * Format the given header line to not exceed 72 characters.
    505   1.1       cgd  */
    506   1.4   deraadt void
    507  1.14       wiz fmt(char *str, struct name *np, FILE *fo, int comma)
    508   1.1       cgd {
    509   1.7     lukem 	int col, len;
    510   1.1       cgd 
    511   1.1       cgd 	comma = comma ? 1 : 0;
    512   1.1       cgd 	col = strlen(str);
    513   1.1       cgd 	if (col)
    514   1.1       cgd 		fputs(str, fo);
    515  1.17       wiz 	for (; np != NULL; np = np->n_flink) {
    516  1.17       wiz 		if (np->n_flink == NULL)
    517   1.1       cgd 			comma = 0;
    518   1.1       cgd 		len = strlen(np->n_name);
    519   1.1       cgd 		col++;		/* for the space */
    520   1.1       cgd 		if (col + len + comma > 72 && col > 4) {
    521   1.1       cgd 			fputs("\n    ", fo);
    522   1.1       cgd 			col = 4;
    523   1.1       cgd 		} else
    524   1.1       cgd 			putc(' ', fo);
    525   1.1       cgd 		fputs(np->n_name, fo);
    526   1.1       cgd 		if (comma)
    527   1.1       cgd 			putc(',', fo);
    528   1.1       cgd 		col += len + comma;
    529   1.1       cgd 	}
    530   1.1       cgd 	putc('\n', fo);
    531   1.1       cgd }
    532   1.1       cgd 
    533   1.1       cgd /*
    534   1.1       cgd  * Save the outgoing mail on the passed file.
    535   1.1       cgd  */
    536   1.1       cgd 
    537   1.1       cgd /*ARGSUSED*/
    538   1.4   deraadt int
    539  1.14       wiz savemail(char name[], FILE *fi)
    540   1.1       cgd {
    541   1.7     lukem 	FILE *fo;
    542   1.1       cgd 	char buf[BUFSIZ];
    543   1.7     lukem 	int i;
    544   1.6  christos 	time_t now;
    545   1.1       cgd 
    546   1.1       cgd 	if ((fo = Fopen(name, "a")) == NULL) {
    547  1.19       wiz 		warn("%s", name);
    548   1.1       cgd 		return (-1);
    549   1.1       cgd 	}
    550  1.18       wiz 	(void)time(&now);
    551   1.1       cgd 	fprintf(fo, "From %s %s", myname, ctime(&now));
    552   1.1       cgd 	while ((i = fread(buf, 1, sizeof buf, fi)) > 0)
    553  1.18       wiz 		(void)fwrite(buf, 1, i, fo);
    554  1.18       wiz 	(void)putc('\n', fo);
    555  1.18       wiz 	(void)fflush(fo);
    556   1.1       cgd 	if (ferror(fo))
    557  1.19       wiz 		warn("%s", name);
    558  1.18       wiz 	(void)Fclose(fo);
    559   1.1       cgd 	rewind(fi);
    560   1.1       cgd 	return (0);
    561   1.1       cgd }
    562