1 /*
2  * Copyright (c) 1983 Eric P. Allman
3  * Copyright (c) 1988, 1993
4  *	The Regents of the University of California.  All rights reserved.
5  *
6  * %sccs.include.redist.c%
7  */
8 
9 #ifndef lint
10 static char sccsid[] = "@(#)savemail.c	8.35 (Berkeley) 10/15/94";
11 #endif /* not lint */
12 
13 # include "sendmail.h"
14 # include <pwd.h>
15 
16 /*
17 **  SAVEMAIL -- Save mail on error
18 **
19 **	If mailing back errors, mail it back to the originator
20 **	together with an error message; otherwise, just put it in
21 **	dead.letter in the user's home directory (if he exists on
22 **	this machine).
23 **
24 **	Parameters:
25 **		e -- the envelope containing the message in error.
26 **
27 **	Returns:
28 **		none
29 **
30 **	Side Effects:
31 **		Saves the letter, by writing or mailing it back to the
32 **		sender, or by putting it in dead.letter in her home
33 **		directory.
34 */
35 
36 /* defines for state machine */
37 # define ESM_REPORT	0	/* report to sender's terminal */
38 # define ESM_MAIL	1	/* mail back to sender */
39 # define ESM_QUIET	2	/* messages have already been returned */
40 # define ESM_DEADLETTER	3	/* save in ~/dead.letter */
41 # define ESM_POSTMASTER	4	/* return to postmaster */
42 # define ESM_USRTMP	5	/* save in /usr/tmp/dead.letter */
43 # define ESM_PANIC	6	/* leave the locked queue/transcript files */
44 # define ESM_DONE	7	/* the message is successfully delivered */
45 
46 # ifndef _PATH_VARTMP
47 #  define _PATH_VARTMP	"/usr/tmp/"
48 # endif
49 
50 
51 savemail(e)
52 	register ENVELOPE *e;
53 {
54 	register struct passwd *pw;
55 	register FILE *fp;
56 	int state;
57 	auto ADDRESS *q = NULL;
58 	register char *p;
59 	MCI mcibuf;
60 	char buf[MAXLINE+1];
61 	extern struct passwd *getpwnam();
62 	extern char *ttypath();
63 	typedef int (*fnptr)();
64 	extern bool writable();
65 
66 	if (tTd(6, 1))
67 	{
68 		printf("\nsavemail, errormode = %c, id = %s, ExitStat = %d\n  e_from=",
69 			e->e_errormode, e->e_id == NULL ? "NONE" : e->e_id,
70 			ExitStat);
71 		printaddr(&e->e_from, FALSE);
72 	}
73 
74 	if (e->e_id == NULL)
75 	{
76 		/* can't return a message with no id */
77 		return;
78 	}
79 
80 	/*
81 	**  In the unhappy event we don't know who to return the mail
82 	**  to, make someone up.
83 	*/
84 
85 	if (e->e_from.q_paddr == NULL)
86 	{
87 		e->e_sender = "Postmaster";
88 		if (parseaddr(e->e_sender, &e->e_from,
89 			      RF_COPYPARSE|RF_SENDERADDR, '\0', NULL, e) == NULL)
90 		{
91 			syserr("553 Cannot parse Postmaster!");
92 			ExitStat = EX_SOFTWARE;
93 			finis();
94 		}
95 	}
96 	e->e_to = NULL;
97 
98 	/*
99 	**  Basic state machine.
100 	**
101 	**	This machine runs through the following states:
102 	**
103 	**	ESM_QUIET	Errors have already been printed iff the
104 	**			sender is local.
105 	**	ESM_REPORT	Report directly to the sender's terminal.
106 	**	ESM_MAIL	Mail response to the sender.
107 	**	ESM_DEADLETTER	Save response in ~/dead.letter.
108 	**	ESM_POSTMASTER	Mail response to the postmaster.
109 	**	ESM_PANIC	Save response anywhere possible.
110 	*/
111 
112 	/* determine starting state */
113 	switch (e->e_errormode)
114 	{
115 	  case EM_WRITE:
116 		state = ESM_REPORT;
117 		break;
118 
119 	  case EM_BERKNET:
120 		/* mail back, but return o.k. exit status */
121 		ExitStat = EX_OK;
122 
123 		/* fall through.... */
124 
125 	  case EM_MAIL:
126 		state = ESM_MAIL;
127 		break;
128 
129 	  case EM_PRINT:
130 	  case '\0':
131 		state = ESM_QUIET;
132 		break;
133 
134 	  case EM_QUIET:
135 		/* no need to return anything at all */
136 		return;
137 
138 	  default:
139 		syserr("554 savemail: bogus errormode x%x\n", e->e_errormode);
140 		state = ESM_MAIL;
141 		break;
142 	}
143 
144 	/* if this is already an error response, send to postmaster */
145 	if (bitset(EF_RESPONSE, e->e_flags))
146 	{
147 		if (e->e_parent != NULL &&
148 		    bitset(EF_RESPONSE, e->e_parent->e_flags))
149 		{
150 			/* got an error sending a response -- can it */
151 			return;
152 		}
153 		state = ESM_POSTMASTER;
154 	}
155 
156 	while (state != ESM_DONE)
157 	{
158 		if (tTd(6, 5))
159 			printf("  state %d\n", state);
160 
161 		switch (state)
162 		{
163 		  case ESM_QUIET:
164 			if (bitnset(M_LOCALMAILER, e->e_from.q_mailer->m_flags))
165 				state = ESM_DEADLETTER;
166 			else
167 				state = ESM_MAIL;
168 			break;
169 
170 		  case ESM_REPORT:
171 
172 			/*
173 			**  If the user is still logged in on the same terminal,
174 			**  then write the error messages back to hir (sic).
175 			*/
176 
177 			p = ttypath();
178 			if (p == NULL || freopen(p, "w", stdout) == NULL)
179 			{
180 				state = ESM_MAIL;
181 				break;
182 			}
183 
184 			expand("\201n", buf, &buf[sizeof buf - 1], e);
185 			printf("\r\nMessage from %s...\r\n", buf);
186 			printf("Errors occurred while sending mail.\r\n");
187 			if (e->e_xfp != NULL)
188 			{
189 				(void) fflush(e->e_xfp);
190 				fp = fopen(queuename(e, 'x'), "r");
191 			}
192 			else
193 				fp = NULL;
194 			if (fp == NULL)
195 			{
196 				syserr("Cannot open %s", queuename(e, 'x'));
197 				printf("Transcript of session is unavailable.\r\n");
198 			}
199 			else
200 			{
201 				printf("Transcript follows:\r\n");
202 				while (fgets(buf, sizeof buf, fp) != NULL &&
203 				       !ferror(stdout))
204 					fputs(buf, stdout);
205 				(void) xfclose(fp, "savemail transcript", e->e_id);
206 			}
207 			printf("Original message will be saved in dead.letter.\r\n");
208 			state = ESM_DEADLETTER;
209 			break;
210 
211 		  case ESM_MAIL:
212 			/*
213 			**  If mailing back, do it.
214 			**	Throw away all further output.  Don't alias,
215 			**	since this could cause loops, e.g., if joe
216 			**	mails to joe@x, and for some reason the network
217 			**	for @x is down, then the response gets sent to
218 			**	joe@x, which gives a response, etc.  Also force
219 			**	the mail to be delivered even if a version of
220 			**	it has already been sent to the sender.
221 			**
222 			**  If this is a configuration or local software
223 			**	error, send to the local postmaster as well,
224 			**	since the originator can't do anything
225 			**	about it anyway.  Note that this is a full
226 			**	copy of the message (intentionally) so that
227 			**	the Postmaster can forward things along.
228 			*/
229 
230 			if (ExitStat == EX_CONFIG || ExitStat == EX_SOFTWARE)
231 			{
232 				(void) sendtolist("postmaster",
233 					  NULLADDR, &e->e_errorqueue, e);
234 			}
235 			if (strcmp(e->e_from.q_paddr, "<>") != 0)
236 			{
237 				(void) sendtolist(e->e_from.q_paddr,
238 					  NULLADDR, &e->e_errorqueue, e);
239 			}
240 
241 			/*
242 			**  Deliver a non-delivery report to the
243 			**  Postmaster-designate (not necessarily
244 			**  Postmaster).  This does not include the
245 			**  body of the message, for privacy reasons.
246 			**  You really shouldn't need this.
247 			*/
248 
249 			e->e_flags |= EF_PM_NOTIFY;
250 
251 			/* check to see if there are any good addresses */
252 			for (q = e->e_errorqueue; q != NULL; q = q->q_next)
253 				if (!bitset(QBADADDR|QDONTSEND, q->q_flags))
254 					break;
255 			if (q == NULL)
256 			{
257 				/* this is an error-error */
258 				state = ESM_POSTMASTER;
259 				break;
260 			}
261 			if (returntosender(e->e_message, e->e_errorqueue,
262 					   (e->e_class >= 0), e) == 0)
263 			{
264 				state = ESM_DONE;
265 				break;
266 			}
267 
268 			/* didn't work -- return to postmaster */
269 			state = ESM_POSTMASTER;
270 			break;
271 
272 		  case ESM_POSTMASTER:
273 			/*
274 			**  Similar to previous case, but to system postmaster.
275 			*/
276 
277 			q = NULL;
278 			if (sendtolist("postmaster", NULL, &q, e) <= 0)
279 			{
280 				syserr("553 cannot parse postmaster!");
281 				ExitStat = EX_SOFTWARE;
282 				state = ESM_USRTMP;
283 				break;
284 			}
285 			if (returntosender(e->e_message,
286 					   q, (e->e_class >= 0), e) == 0)
287 			{
288 				state = ESM_DONE;
289 				break;
290 			}
291 
292 			/* didn't work -- last resort */
293 			state = ESM_USRTMP;
294 			break;
295 
296 		  case ESM_DEADLETTER:
297 			/*
298 			**  Save the message in dead.letter.
299 			**	If we weren't mailing back, and the user is
300 			**	local, we should save the message in
301 			**	~/dead.letter so that the poor person doesn't
302 			**	have to type it over again -- and we all know
303 			**	what poor typists UNIX users are.
304 			*/
305 
306 			p = NULL;
307 			if (bitnset(M_HASPWENT, e->e_from.q_mailer->m_flags))
308 			{
309 				if (e->e_from.q_home != NULL)
310 					p = e->e_from.q_home;
311 				else if ((pw = getpwnam(e->e_from.q_user)) != NULL)
312 					p = pw->pw_dir;
313 			}
314 			if (p == NULL)
315 			{
316 				/* no local directory */
317 				state = ESM_MAIL;
318 				break;
319 			}
320 			if (e->e_dfp != NULL)
321 			{
322 				bool oldverb = Verbose;
323 
324 				/* we have a home directory; open dead.letter */
325 				define('z', p, e);
326 				expand("\201z/dead.letter", buf, &buf[sizeof buf - 1], e);
327 				Verbose = TRUE;
328 				message("Saving message in %s", buf);
329 				Verbose = oldverb;
330 				e->e_to = buf;
331 				q = NULL;
332 				(void) sendtolist(buf, &e->e_from, &q, e);
333 				if (q != NULL &&
334 				    !bitset(QBADADDR, q->q_flags) &&
335 				    deliver(e, q) == 0)
336 					state = ESM_DONE;
337 				else
338 					state = ESM_MAIL;
339 			}
340 			else
341 			{
342 				/* no data file -- try mailing back */
343 				state = ESM_MAIL;
344 			}
345 			break;
346 
347 		  case ESM_USRTMP:
348 			/*
349 			**  Log the mail in /usr/tmp/dead.letter.
350 			*/
351 
352 			if (e->e_class < 0)
353 			{
354 				state = ESM_DONE;
355 				break;
356 			}
357 
358 			strcpy(buf, _PATH_VARTMP);
359 			strcat(buf, "dead.letter");
360 			if (!writable(buf, NULLADDR, SFF_NOSLINK))
361 			{
362 				state = ESM_PANIC;
363 				break;
364 			}
365 			fp = dfopen(buf, O_WRONLY|O_CREAT|O_APPEND, FileMode);
366 			if (fp == NULL)
367 			{
368 				state = ESM_PANIC;
369 				break;
370 			}
371 
372 			bzero(&mcibuf, sizeof mcibuf);
373 			mcibuf.mci_out = fp;
374 			mcibuf.mci_mailer = FileMailer;
375 			if (bitnset(M_7BITS, FileMailer->m_flags))
376 				mcibuf.mci_flags |= MCIF_7BIT;
377 
378 			putfromline(&mcibuf, e);
379 			(*e->e_puthdr)(&mcibuf, e->e_header, e);
380 			(*e->e_putbody)(&mcibuf, e, NULL);
381 			putline("\n", &mcibuf);
382 			(void) fflush(fp);
383 			state = ferror(fp) ? ESM_PANIC : ESM_DONE;
384 			(void) xfclose(fp, "savemail", buf);
385 			break;
386 
387 		  default:
388 			syserr("554 savemail: unknown state %d", state);
389 
390 			/* fall through ... */
391 
392 		  case ESM_PANIC:
393 			/* leave the locked queue & transcript files around */
394 			syserr("!554 savemail: cannot save rejected email anywhere");
395 		}
396 	}
397 }
398 /*
399 **  RETURNTOSENDER -- return a message to the sender with an error.
400 **
401 **	Parameters:
402 **		msg -- the explanatory message.
403 **		returnq -- the queue of people to send the message to.
404 **		sendbody -- if TRUE, also send back the body of the
405 **			message; otherwise just send the header.
406 **		e -- the current envelope.
407 **
408 **	Returns:
409 **		zero -- if everything went ok.
410 **		else -- some error.
411 **
412 **	Side Effects:
413 **		Returns the current message to the sender via
414 **		mail.
415 */
416 
417 static bool	SendBody;
418 
419 #define MAXRETURNS	6	/* max depth of returning messages */
420 #define ERRORFUDGE	100	/* nominal size of error message text */
421 
422 returntosender(msg, returnq, sendbody, e)
423 	char *msg;
424 	ADDRESS *returnq;
425 	bool sendbody;
426 	register ENVELOPE *e;
427 {
428 	char buf[MAXNAME];
429 	extern putheader(), errbody();
430 	register ENVELOPE *ee;
431 	ENVELOPE *oldcur = CurEnv;
432 	ENVELOPE errenvelope;
433 	static int returndepth;
434 	register ADDRESS *q;
435 
436 	if (returnq == NULL)
437 		return (-1);
438 
439 	if (msg == NULL)
440 		msg = "Unable to deliver mail";
441 
442 	if (tTd(6, 1))
443 	{
444 		printf("Return To Sender: msg=\"%s\", depth=%d, e=%x, returnq=",
445 		       msg, returndepth, e);
446 		printaddr(returnq, TRUE);
447 	}
448 
449 	if (++returndepth >= MAXRETURNS)
450 	{
451 		if (returndepth != MAXRETURNS)
452 			syserr("554 returntosender: infinite recursion on %s", returnq->q_paddr);
453 		/* don't "unrecurse" and fake a clean exit */
454 		/* returndepth--; */
455 		return (0);
456 	}
457 
458 	SendBody = sendbody;
459 	define('g', e->e_from.q_paddr, e);
460 	define('u', NULL, e);
461 	ee = newenvelope(&errenvelope, e);
462 	define('a', "\201b", ee);
463 	define('r', "internal", ee);
464 	define('s', "localhost", ee);
465 	define('_', "localhost", ee);
466 	ee->e_puthdr = putheader;
467 	ee->e_putbody = errbody;
468 	ee->e_flags |= EF_RESPONSE|EF_METOO;
469 	if (!bitset(EF_OLDSTYLE, e->e_flags))
470 		ee->e_flags &= ~EF_OLDSTYLE;
471 	ee->e_sendqueue = returnq;
472 	ee->e_msgsize = ERRORFUDGE;
473 	if (!bitset(EF_NORETURN, e->e_flags))
474 		ee->e_msgsize += e->e_msgsize;
475 	initsys(ee);
476 	for (q = returnq; q != NULL; q = q->q_next)
477 	{
478 		if (bitset(QBADADDR, q->q_flags))
479 			continue;
480 
481 		if (!bitset(QDONTSEND, q->q_flags))
482 			ee->e_nrcpts++;
483 
484 		if (!DontPruneRoutes && pruneroute(q->q_paddr))
485 			parseaddr(q->q_paddr, q, RF_COPYPARSE, '\0', NULL, e);
486 
487 		if (q->q_alias == NULL)
488 			addheader("To", q->q_paddr, &ee->e_header);
489 	}
490 
491 # ifdef LOG
492 	if (LogLevel > 5)
493 		syslog(LOG_INFO, "%s: %s: return to sender: %s",
494 			e->e_id, ee->e_id, msg);
495 # endif
496 
497 	if (strncmp(msg, "Warning:", 8) == 0)
498 	{
499 		addheader("Subject", msg, ee);
500 		addheader("Precedence", "autoreply warning-timeout", &ee->e_header);
501 	}
502 	else if (strcmp(msg, "Return receipt") == 0)
503 	{
504 		addheader("Subject", msg, ee);
505 		addheader("Precedence", "autoreply return-receipt", &ee->e_header);
506 	}
507 	else
508 	{
509 		sprintf(buf, "Returned mail: %.*s", sizeof buf - 20, msg);
510 		addheader("Subject", buf, &ee->e_header);
511 		addheader("Precedence", "autoreply failure-message", &ee->e_header);
512 	}
513 	if (SendMIMEErrors)
514 	{
515 		addheader("MIME-Version", "1.0", &ee->e_header);
516 		(void) sprintf(buf, "%s.%ld/%s",
517 			ee->e_id, curtime(), MyHostName);
518 		ee->e_msgboundary = newstr(buf);
519 		(void) sprintf(buf, "multipart/mixed; boundary=\"%s\"",
520 					ee->e_msgboundary);
521 		addheader("Content-Type", buf, &ee->e_header);
522 	}
523 
524 	/* fake up an address header for the from person */
525 	expand("\201n", buf, &buf[sizeof buf - 1], e);
526 	if (parseaddr(buf, &ee->e_from, RF_COPYALL|RF_SENDERADDR, '\0', NULL, e) == NULL)
527 	{
528 		syserr("553 Can't parse myself!");
529 		ExitStat = EX_SOFTWARE;
530 		returndepth--;
531 		return (-1);
532 	}
533 	ee->e_sender = ee->e_from.q_paddr;
534 
535 	/* push state into submessage */
536 	CurEnv = ee;
537 	define('f', "\201n", ee);
538 	define('x', "Mail Delivery Subsystem", ee);
539 	eatheader(ee, TRUE);
540 
541 	/* mark statistics */
542 	markstats(ee, NULLADDR);
543 
544 	/* actually deliver the error message */
545 	sendall(ee, SM_DEFAULT);
546 
547 	/* restore state */
548 	dropenvelope(ee);
549 	CurEnv = oldcur;
550 	returndepth--;
551 
552 	/* should check for delivery errors here */
553 	return (0);
554 }
555 /*
556 **  ERRBODY -- output the body of an error message.
557 **
558 **	Typically this is a copy of the transcript plus a copy of the
559 **	original offending message.
560 **
561 **	Parameters:
562 **		mci -- the mailer connection information.
563 **		e -- the envelope we are working in.
564 **		separator -- any possible MIME separator.
565 **
566 **	Returns:
567 **		none
568 **
569 **	Side Effects:
570 **		Outputs the body of an error message.
571 */
572 
573 errbody(mci, e, separator)
574 	register MCI *mci;
575 	register ENVELOPE *e;
576 	char *separator;
577 {
578 	register FILE *xfile;
579 	char *p;
580 	register ADDRESS *q;
581 	bool printheader;
582 	char buf[MAXLINE];
583 
584 	if (bitset(MCIF_INHEADER, mci->mci_flags))
585 	{
586 		putline("", mci);
587 		mci->mci_flags &= ~MCIF_INHEADER;
588 	}
589 	if (e->e_parent == NULL)
590 	{
591 		syserr("errbody: null parent");
592 		putline("   ----- Original message lost -----\n", mci);
593 		return;
594 	}
595 
596 	/*
597 	**  Output MIME header.
598 	*/
599 
600 	if (e->e_msgboundary != NULL)
601 	{
602 		putline("This is a MIME-encapsulated message", mci);
603 		putline("", mci);
604 		(void) sprintf(buf, "--%s", e->e_msgboundary);
605 		putline(buf, mci);
606 		putline("", mci);
607 	}
608 
609 	/*
610 	**  Output introductory information.
611 	*/
612 
613 	for (q = e->e_parent->e_sendqueue; q != NULL; q = q->q_next)
614 		if (bitset(QBADADDR, q->q_flags))
615 			break;
616 	if (q == NULL &&
617 	    !bitset(EF_FATALERRS|EF_SENDRECEIPT, e->e_parent->e_flags))
618 	{
619 		putline("    **********************************************",
620 			mci);
621 		putline("    **      THIS IS A WARNING MESSAGE ONLY      **",
622 			mci);
623 		putline("    **  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **",
624 			mci);
625 		putline("    **********************************************",
626 			mci);
627 		putline("", mci);
628 	}
629 	sprintf(buf, "The original message was received at %s",
630 		arpadate(ctime(&e->e_parent->e_ctime)));
631 	putline(buf, mci);
632 	expand("from \201_", buf, &buf[sizeof buf - 1], e->e_parent);
633 	putline(buf, mci);
634 	putline("", mci);
635 
636 	/*
637 	**  Output error message header (if specified and available).
638 	*/
639 
640 	if (ErrMsgFile != NULL && !bitset(EF_SENDRECEIPT, e->e_parent->e_flags))
641 	{
642 		if (*ErrMsgFile == '/')
643 		{
644 			xfile = fopen(ErrMsgFile, "r");
645 			if (xfile != NULL)
646 			{
647 				while (fgets(buf, sizeof buf, xfile) != NULL)
648 				{
649 					expand(buf, buf, &buf[sizeof buf - 1], e);
650 					putline(buf, mci);
651 				}
652 				(void) fclose(xfile);
653 				putline("\n", mci);
654 			}
655 		}
656 		else
657 		{
658 			expand(ErrMsgFile, buf, &buf[sizeof buf - 1], e);
659 			putline(buf, mci);
660 			putline("", mci);
661 		}
662 	}
663 
664 	/*
665 	**  Output message introduction
666 	*/
667 
668 	printheader = TRUE;
669 	for (q = e->e_parent->e_sendqueue; q != NULL; q = q->q_next)
670 	{
671 		if (bitset(QBADADDR|QREPORT, q->q_flags))
672 		{
673 			if (printheader)
674 			{
675 				putline("   ----- The following addresses had delivery problems -----",
676 					mci);
677 				printheader = FALSE;
678 			}
679 			strcpy(buf, q->q_paddr);
680 			if (bitset(QBADADDR, q->q_flags))
681 				strcat(buf, "  (unrecoverable error)");
682 			else
683 				strcat(buf, "  (transient failure)");
684 			putline(buf, mci);
685 			if (q->q_alias != NULL)
686 			{
687 				strcpy(buf, "    (expanded from: ");
688 				strcat(buf, q->q_alias->q_paddr);
689 				strcat(buf, ")");
690 				putline(buf, mci);
691 			}
692 		}
693 	}
694 	if (!printheader)
695 		putline("\n", mci);
696 
697 	/*
698 	**  Output transcript of errors
699 	*/
700 
701 	(void) fflush(stdout);
702 	p = queuename(e->e_parent, 'x');
703 	if ((xfile = fopen(p, "r")) == NULL)
704 	{
705 		syserr("Cannot open %s", p);
706 		putline("   ----- Transcript of session is unavailable -----\n", mci);
707 	}
708 	else
709 	{
710 		putline("   ----- Transcript of session follows -----\n", mci);
711 		if (e->e_xfp != NULL)
712 			(void) fflush(e->e_xfp);
713 		while (fgets(buf, sizeof buf, xfile) != NULL)
714 			putline(buf, mci);
715 		(void) xfclose(xfile, "errbody xscript", p);
716 	}
717 	errno = 0;
718 
719 	/*
720 	**  Output text of original message
721 	*/
722 
723 	if (bitset(EF_NORETURN, e->e_flags))
724 		SendBody = FALSE;
725 	putline("", mci);
726 	if (e->e_parent->e_df != NULL)
727 	{
728 		if (SendBody)
729 			putline("   ----- Original message follows -----\n", mci);
730 		else
731 			putline("   ----- Message header follows -----\n", mci);
732 		(void) fflush(mci->mci_out);
733 
734 		if (e->e_msgboundary != NULL)
735 		{
736 			putline("", mci);
737 			(void) sprintf(buf, "--%s", e->e_msgboundary);
738 			putline(buf, mci);
739 			putline("Content-Type: message/rfc822", mci);
740 			putline("", mci);
741 		}
742 		putheader(mci, e->e_parent->e_header, e->e_parent);
743 		if (SendBody)
744 			putbody(mci, e->e_parent, e->e_msgboundary);
745 		else
746 		{
747 			putline("", mci);
748 			putline("   ----- Message body suppressed -----", mci);
749 		}
750 	}
751 	else
752 	{
753 		putline("  ----- No message was collected -----\n", mci);
754 	}
755 
756 	if (e->e_msgboundary != NULL)
757 	{
758 		putline("", mci);
759 		(void) sprintf(buf, "--%s--", e->e_msgboundary);
760 		putline(buf, mci);
761 	}
762 	putline("", mci);
763 
764 	/*
765 	**  Cleanup and exit
766 	*/
767 
768 	if (errno != 0)
769 		syserr("errbody: I/O error");
770 }
771 /*
772 **  PRUNEROUTE -- prune an RFC-822 source route
773 **
774 **	Trims down a source route to the last internet-registered hop.
775 **	This is encouraged by RFC 1123 section 5.3.3.
776 **
777 **	Parameters:
778 **		addr -- the address
779 **
780 **	Returns:
781 **		TRUE -- address was modified
782 **		FALSE -- address could not be pruned
783 **
784 **	Side Effects:
785 **		modifies addr in-place
786 */
787 
788 pruneroute(addr)
789 	char *addr;
790 {
791 #if NAMED_BIND
792 	char *start, *at, *comma;
793 	char c;
794 	int rcode;
795 	char hostbuf[BUFSIZ];
796 	char *mxhosts[MAXMXHOSTS + 1];
797 
798 	/* check to see if this is really a route-addr */
799 	if (*addr != '<' || addr[1] != '@' || addr[strlen(addr) - 1] != '>')
800 		return FALSE;
801 	start = strchr(addr, ':');
802 	at = strrchr(addr, '@');
803 	if (start == NULL || at == NULL || at < start)
804 		return FALSE;
805 
806 	/* slice off the angle brackets */
807 	strcpy(hostbuf, at + 1);
808 	hostbuf[strlen(hostbuf) - 1] = '\0';
809 
810 	while (start)
811 	{
812 		if (getmxrr(hostbuf, mxhosts, FALSE, &rcode) > 0)
813 		{
814 			strcpy(addr + 1, start + 1);
815 			return TRUE;
816 		}
817 		c = *start;
818 		*start = '\0';
819 		comma = strrchr(addr, ',');
820 		if (comma && comma[1] == '@')
821 			strcpy(hostbuf, comma + 2);
822 		else
823 			comma = 0;
824 		*start = c;
825 		start = comma;
826 	}
827 #endif
828 	return FALSE;
829 }
830