122711Sdist /*
234921Sbostic  * Copyright (c) 1983 Eric P. Allman
362531Sbostic  * Copyright (c) 1988, 1993
462531Sbostic  *	The Regents of the University of California.  All rights reserved.
533731Sbostic  *
642829Sbostic  * %sccs.include.redist.c%
733731Sbostic  */
822711Sdist 
922711Sdist #ifndef lint
10*67939Seric static char sccsid[] = "@(#)savemail.c	8.39 (Berkeley) 11/20/94";
1133731Sbostic #endif /* not lint */
1222711Sdist 
1363937Seric # include "sendmail.h"
14297Seric # include <pwd.h>
15297Seric 
16297Seric /*
17297Seric **  SAVEMAIL -- Save mail on error
18297Seric **
199375Seric **	If mailing back errors, mail it back to the originator
20297Seric **	together with an error message; otherwise, just put it in
21297Seric **	dead.letter in the user's home directory (if he exists on
22297Seric **	this machine).
23297Seric **
24297Seric **	Parameters:
259337Seric **		e -- the envelope containing the message in error.
26297Seric **
27297Seric **	Returns:
28297Seric **		none
29297Seric **
30297Seric **	Side Effects:
31297Seric **		Saves the letter, by writing or mailing it back to the
32297Seric **		sender, or by putting it in dead.letter in her home
33297Seric **		directory.
34297Seric */
35297Seric 
3624942Seric /* defines for state machine */
3724942Seric # define ESM_REPORT	0	/* report to sender's terminal */
3824942Seric # define ESM_MAIL	1	/* mail back to sender */
3924942Seric # define ESM_QUIET	2	/* messages have already been returned */
4024942Seric # define ESM_DEADLETTER	3	/* save in ~/dead.letter */
4124942Seric # define ESM_POSTMASTER	4	/* return to postmaster */
4224942Seric # define ESM_USRTMP	5	/* save in /usr/tmp/dead.letter */
4324942Seric # define ESM_PANIC	6	/* leave the locked queue/transcript files */
4424942Seric # define ESM_DONE	7	/* the message is successfully delivered */
4524942Seric 
4665174Seric # ifndef _PATH_VARTMP
4765174Seric #  define _PATH_VARTMP	"/usr/tmp/"
4865174Seric # endif
4924942Seric 
5065174Seric 
519337Seric savemail(e)
529337Seric 	register ENVELOPE *e;
53297Seric {
54297Seric 	register struct passwd *pw;
5524942Seric 	register FILE *fp;
5624942Seric 	int state;
5759290Seric 	auto ADDRESS *q = NULL;
5865870Seric 	register char *p;
5965870Seric 	MCI mcibuf;
60297Seric 	char buf[MAXLINE+1];
61297Seric 	extern struct passwd *getpwnam();
62297Seric 	extern char *ttypath();
635846Seric 	typedef int (*fnptr)();
6464945Seric 	extern bool writable();
65297Seric 
667676Seric 	if (tTd(6, 1))
6758680Seric 	{
6866317Seric 		printf("\nsavemail, errormode = %c, id = %s, ExitStat = %d\n  e_from=",
6966317Seric 			e->e_errormode, e->e_id == NULL ? "NONE" : e->e_id,
7066317Seric 			ExitStat);
7158680Seric 		printaddr(&e->e_from, FALSE);
7258680Seric 	}
737361Seric 
7459101Seric 	if (e->e_id == NULL)
7559101Seric 	{
7659101Seric 		/* can't return a message with no id */
7759101Seric 		return;
7859101Seric 	}
7959101Seric 
80297Seric 	/*
81297Seric 	**  In the unhappy event we don't know who to return the mail
82297Seric 	**  to, make someone up.
83297Seric 	*/
84297Seric 
859337Seric 	if (e->e_from.q_paddr == NULL)
86297Seric 	{
8758733Seric 		e->e_sender = "Postmaster";
8864284Seric 		if (parseaddr(e->e_sender, &e->e_from,
8964284Seric 			      RF_COPYPARSE|RF_SENDERADDR, '\0', NULL, e) == NULL)
90297Seric 		{
9158733Seric 			syserr("553 Cannot parse Postmaster!");
92297Seric 			ExitStat = EX_SOFTWARE;
93297Seric 			finis();
94297Seric 		}
95297Seric 	}
969337Seric 	e->e_to = NULL;
97297Seric 
98297Seric 	/*
9924942Seric 	**  Basic state machine.
10024942Seric 	**
10124942Seric 	**	This machine runs through the following states:
10224942Seric 	**
10324942Seric 	**	ESM_QUIET	Errors have already been printed iff the
10424942Seric 	**			sender is local.
10524942Seric 	**	ESM_REPORT	Report directly to the sender's terminal.
10624942Seric 	**	ESM_MAIL	Mail response to the sender.
10724942Seric 	**	ESM_DEADLETTER	Save response in ~/dead.letter.
10824942Seric 	**	ESM_POSTMASTER	Mail response to the postmaster.
10924942Seric 	**	ESM_PANIC	Save response anywhere possible.
110297Seric 	*/
111297Seric 
11224942Seric 	/* determine starting state */
11358734Seric 	switch (e->e_errormode)
114297Seric 	{
11524942Seric 	  case EM_WRITE:
11624942Seric 		state = ESM_REPORT;
11724942Seric 		break;
11824942Seric 
11924942Seric 	  case EM_BERKNET:
12024942Seric 		/* mail back, but return o.k. exit status */
121401Seric 		ExitStat = EX_OK;
12224942Seric 
12324942Seric 		/* fall through.... */
12424942Seric 
12524942Seric 	  case EM_MAIL:
12624942Seric 		state = ESM_MAIL;
12724942Seric 		break;
12824942Seric 
12924942Seric 	  case EM_PRINT:
13024979Seric 	  case '\0':
13124942Seric 		state = ESM_QUIET;
13224942Seric 		break;
13324942Seric 
13424942Seric 	  case EM_QUIET:
13524942Seric 		/* no need to return anything at all */
13624942Seric 		return;
13724979Seric 
13824979Seric 	  default:
13958734Seric 		syserr("554 savemail: bogus errormode x%x\n", e->e_errormode);
14024979Seric 		state = ESM_MAIL;
14124979Seric 		break;
142297Seric 	}
143297Seric 
14459094Seric 	/* if this is already an error response, send to postmaster */
14559094Seric 	if (bitset(EF_RESPONSE, e->e_flags))
14659094Seric 	{
14759094Seric 		if (e->e_parent != NULL &&
14859094Seric 		    bitset(EF_RESPONSE, e->e_parent->e_flags))
14959094Seric 		{
15059094Seric 			/* got an error sending a response -- can it */
15159094Seric 			return;
15259094Seric 		}
15359094Seric 		state = ESM_POSTMASTER;
15459094Seric 	}
15559094Seric 
15624942Seric 	while (state != ESM_DONE)
157297Seric 	{
15824979Seric 		if (tTd(6, 5))
15924979Seric 			printf("  state %d\n", state);
16024979Seric 
16124942Seric 		switch (state)
162297Seric 		{
16324979Seric 		  case ESM_QUIET:
16467473Seric 			if (bitnset(M_LOCALMAILER, e->e_from.q_mailer->m_flags))
16524979Seric 				state = ESM_DEADLETTER;
16624979Seric 			else
16724979Seric 				state = ESM_MAIL;
16824979Seric 			break;
16924979Seric 
17024942Seric 		  case ESM_REPORT:
17124942Seric 
17224942Seric 			/*
17324942Seric 			**  If the user is still logged in on the same terminal,
17424942Seric 			**  then write the error messages back to hir (sic).
17524942Seric 			*/
17624942Seric 
17724942Seric 			p = ttypath();
17824942Seric 			if (p == NULL || freopen(p, "w", stdout) == NULL)
17924942Seric 			{
18024942Seric 				state = ESM_MAIL;
18124942Seric 				break;
18224942Seric 			}
18324942Seric 
18458050Seric 			expand("\201n", buf, &buf[sizeof buf - 1], e);
1859375Seric 			printf("\r\nMessage from %s...\r\n", buf);
1869375Seric 			printf("Errors occurred while sending mail.\r\n");
1879542Seric 			if (e->e_xfp != NULL)
1889375Seric 			{
1899542Seric 				(void) fflush(e->e_xfp);
19024942Seric 				fp = fopen(queuename(e, 'x'), "r");
1919375Seric 			}
1929375Seric 			else
19324942Seric 				fp = NULL;
19424942Seric 			if (fp == NULL)
1959375Seric 			{
1969337Seric 				syserr("Cannot open %s", queuename(e, 'x'));
1979375Seric 				printf("Transcript of session is unavailable.\r\n");
1989375Seric 			}
1999375Seric 			else
2009375Seric 			{
2019375Seric 				printf("Transcript follows:\r\n");
20224942Seric 				while (fgets(buf, sizeof buf, fp) != NULL &&
2039375Seric 				       !ferror(stdout))
2049375Seric 					fputs(buf, stdout);
20558680Seric 				(void) xfclose(fp, "savemail transcript", e->e_id);
2069375Seric 			}
20724942Seric 			printf("Original message will be saved in dead.letter.\r\n");
20824942Seric 			state = ESM_DEADLETTER;
20924942Seric 			break;
210297Seric 
21124942Seric 		  case ESM_MAIL:
21224942Seric 			/*
21324942Seric 			**  If mailing back, do it.
21424942Seric 			**	Throw away all further output.  Don't alias,
21524942Seric 			**	since this could cause loops, e.g., if joe
21624942Seric 			**	mails to joe@x, and for some reason the network
21724942Seric 			**	for @x is down, then the response gets sent to
21824942Seric 			**	joe@x, which gives a response, etc.  Also force
21924942Seric 			**	the mail to be delivered even if a version of
22024942Seric 			**	it has already been sent to the sender.
22163841Seric 			**
22263841Seric 			**  If this is a configuration or local software
22363841Seric 			**	error, send to the local postmaster as well,
22463841Seric 			**	since the originator can't do anything
22563841Seric 			**	about it anyway.  Note that this is a full
22663841Seric 			**	copy of the message (intentionally) so that
22763841Seric 			**	the Postmaster can forward things along.
22824942Seric 			*/
229297Seric 
23063841Seric 			if (ExitStat == EX_CONFIG || ExitStat == EX_SOFTWARE)
23163841Seric 			{
23263841Seric 				(void) sendtolist("postmaster",
23364284Seric 					  NULLADDR, &e->e_errorqueue, e);
23463841Seric 			}
235*67939Seric 			if (!emptyaddr(&e->e_from))
23663841Seric 			{
23758680Seric 				(void) sendtolist(e->e_from.q_paddr,
23864284Seric 					  NULLADDR, &e->e_errorqueue, e);
23963841Seric 			}
24058680Seric 
24163841Seric 			/*
24263841Seric 			**  Deliver a non-delivery report to the
24363841Seric 			**  Postmaster-designate (not necessarily
24463841Seric 			**  Postmaster).  This does not include the
24563841Seric 			**  body of the message, for privacy reasons.
24663841Seric 			**  You really shouldn't need this.
24763841Seric 			*/
24863841Seric 
24963849Seric 			e->e_flags |= EF_PM_NOTIFY;
25058178Seric 
25164792Seric 			/* check to see if there are any good addresses */
25264792Seric 			for (q = e->e_errorqueue; q != NULL; q = q->q_next)
25364792Seric 				if (!bitset(QBADADDR|QDONTSEND, q->q_flags))
25464792Seric 					break;
25558680Seric 			if (q == NULL)
25658680Seric 			{
25758680Seric 				/* this is an error-error */
25858680Seric 				state = ESM_POSTMASTER;
25958680Seric 				break;
26058680Seric 			}
26166303Seric 			if (returntosender(e->e_message, e->e_errorqueue,
26266303Seric 					   (e->e_class >= 0), e) == 0)
26358680Seric 			{
26458680Seric 				state = ESM_DONE;
26558680Seric 				break;
26658680Seric 			}
26724981Seric 
26858680Seric 			/* didn't work -- return to postmaster */
26958680Seric 			state = ESM_POSTMASTER;
27058680Seric 			break;
27158306Seric 
27258680Seric 		  case ESM_POSTMASTER:
27358680Seric 			/*
27458680Seric 			**  Similar to previous case, but to system postmaster.
27558680Seric 			*/
27658680Seric 
27759432Seric 			q = NULL;
27859432Seric 			if (sendtolist("postmaster", NULL, &q, e) <= 0)
27924942Seric 			{
28058680Seric 				syserr("553 cannot parse postmaster!");
28158680Seric 				ExitStat = EX_SOFTWARE;
28258680Seric 				state = ESM_USRTMP;
28358680Seric 				break;
28424942Seric 			}
28558966Seric 			if (returntosender(e->e_message,
28657438Seric 					   q, (e->e_class >= 0), e) == 0)
28724942Seric 			{
28824942Seric 				state = ESM_DONE;
28924942Seric 				break;
29024942Seric 			}
291297Seric 
29258680Seric 			/* didn't work -- last resort */
29358680Seric 			state = ESM_USRTMP;
29424942Seric 			break;
295297Seric 
29624942Seric 		  case ESM_DEADLETTER:
29724942Seric 			/*
29824942Seric 			**  Save the message in dead.letter.
29924942Seric 			**	If we weren't mailing back, and the user is
30024942Seric 			**	local, we should save the message in
30124942Seric 			**	~/dead.letter so that the poor person doesn't
30224942Seric 			**	have to type it over again -- and we all know
30324942Seric 			**	what poor typists UNIX users are.
30424942Seric 			*/
3055315Seric 
30624942Seric 			p = NULL;
30767473Seric 			if (bitnset(M_HASPWENT, e->e_from.q_mailer->m_flags))
30824942Seric 			{
30924942Seric 				if (e->e_from.q_home != NULL)
31024942Seric 					p = e->e_from.q_home;
31124942Seric 				else if ((pw = getpwnam(e->e_from.q_user)) != NULL)
31224942Seric 					p = pw->pw_dir;
31324942Seric 			}
31424942Seric 			if (p == NULL)
31524942Seric 			{
31658865Seric 				/* no local directory */
31724942Seric 				state = ESM_MAIL;
31824942Seric 				break;
31924942Seric 			}
32024942Seric 			if (e->e_dfp != NULL)
32124942Seric 			{
32224942Seric 				bool oldverb = Verbose;
32324942Seric 
32424942Seric 				/* we have a home directory; open dead.letter */
32524942Seric 				define('z', p, e);
32658050Seric 				expand("\201z/dead.letter", buf, &buf[sizeof buf - 1], e);
32724942Seric 				Verbose = TRUE;
32858151Seric 				message("Saving message in %s", buf);
32924942Seric 				Verbose = oldverb;
33024942Seric 				e->e_to = buf;
33124942Seric 				q = NULL;
33258082Seric 				(void) sendtolist(buf, &e->e_from, &q, e);
33364354Seric 				if (q != NULL &&
33464354Seric 				    !bitset(QBADADDR, q->q_flags) &&
33564354Seric 				    deliver(e, q) == 0)
33624942Seric 					state = ESM_DONE;
33724942Seric 				else
33824942Seric 					state = ESM_MAIL;
33924942Seric 			}
34025569Seric 			else
34125569Seric 			{
34225569Seric 				/* no data file -- try mailing back */
34325569Seric 				state = ESM_MAIL;
34425569Seric 			}
34524942Seric 			break;
34624942Seric 
34724942Seric 		  case ESM_USRTMP:
34824942Seric 			/*
34924942Seric 			**  Log the mail in /usr/tmp/dead.letter.
35024942Seric 			*/
35124942Seric 
35257438Seric 			if (e->e_class < 0)
35357438Seric 			{
35457438Seric 				state = ESM_DONE;
35557438Seric 				break;
35657438Seric 			}
35757438Seric 
35865174Seric 			strcpy(buf, _PATH_VARTMP);
35965174Seric 			strcat(buf, "dead.letter");
36065112Seric 			if (!writable(buf, NULLADDR, SFF_NOSLINK))
36164945Seric 			{
36264945Seric 				state = ESM_PANIC;
36364945Seric 				break;
36464945Seric 			}
36564945Seric 			fp = dfopen(buf, O_WRONLY|O_CREAT|O_APPEND, FileMode);
36624942Seric 			if (fp == NULL)
36724942Seric 			{
36824942Seric 				state = ESM_PANIC;
36924942Seric 				break;
37024942Seric 			}
37124942Seric 
37265870Seric 			bzero(&mcibuf, sizeof mcibuf);
37365870Seric 			mcibuf.mci_out = fp;
37465870Seric 			mcibuf.mci_mailer = FileMailer;
37565870Seric 			if (bitnset(M_7BITS, FileMailer->m_flags))
37665870Seric 				mcibuf.mci_flags |= MCIF_7BIT;
37765870Seric 
37865870Seric 			putfromline(&mcibuf, e);
37967936Seric 			(*e->e_puthdr)(&mcibuf, e->e_header, e, 0);
38067936Seric 			(*e->e_putbody)(&mcibuf, e, NULL, 0);
38165870Seric 			putline("\n", &mcibuf);
38224942Seric 			(void) fflush(fp);
38324942Seric 			state = ferror(fp) ? ESM_PANIC : ESM_DONE;
38467809Seric 			(void) xfclose(fp, "savemail", buf);
38524942Seric 			break;
38624942Seric 
38724942Seric 		  default:
38858151Seric 			syserr("554 savemail: unknown state %d", state);
38924942Seric 
39024942Seric 			/* fall through ... */
39124942Seric 
39224942Seric 		  case ESM_PANIC:
39324942Seric 			/* leave the locked queue & transcript files around */
39464949Seric 			syserr("!554 savemail: cannot save rejected email anywhere");
39524942Seric 		}
396297Seric 	}
397297Seric }
398297Seric /*
3994633Seric **  RETURNTOSENDER -- return a message to the sender with an error.
4004633Seric **
4014633Seric **	Parameters:
4024633Seric **		msg -- the explanatory message.
40316479Seric **		returnq -- the queue of people to send the message to.
4045984Seric **		sendbody -- if TRUE, also send back the body of the
4055984Seric **			message; otherwise just send the header.
40655012Seric **		e -- the current envelope.
4074633Seric **
4084633Seric **	Returns:
4094633Seric **		zero -- if everything went ok.
4104633Seric **		else -- some error.
4114633Seric **
4124633Seric **	Side Effects:
4134633Seric **		Returns the current message to the sender via
4144633Seric **		mail.
4154633Seric */
4164633Seric 
4175984Seric static bool	SendBody;
4184633Seric 
4197045Seric #define MAXRETURNS	6	/* max depth of returning messages */
42058559Seric #define ERRORFUDGE	100	/* nominal size of error message text */
4217045Seric 
42255012Seric returntosender(msg, returnq, sendbody, e)
4234633Seric 	char *msg;
42416479Seric 	ADDRESS *returnq;
4255984Seric 	bool sendbody;
42655012Seric 	register ENVELOPE *e;
4274633Seric {
4284633Seric 	char buf[MAXNAME];
4296978Seric 	extern putheader(), errbody();
4306978Seric 	register ENVELOPE *ee;
43158680Seric 	ENVELOPE *oldcur = CurEnv;
4326978Seric 	ENVELOPE errenvelope;
4337045Seric 	static int returndepth;
4349375Seric 	register ADDRESS *q;
4354633Seric 
43660010Seric 	if (returnq == NULL)
43760010Seric 		return (-1);
43860010Seric 
43958966Seric 	if (msg == NULL)
44058966Seric 		msg = "Unable to deliver mail";
44158966Seric 
4427676Seric 	if (tTd(6, 1))
4437287Seric 	{
44458680Seric 		printf("Return To Sender: msg=\"%s\", depth=%d, e=%x, returnq=",
44555012Seric 		       msg, returndepth, e);
44616479Seric 		printaddr(returnq, TRUE);
4477287Seric 	}
4487287Seric 
4497045Seric 	if (++returndepth >= MAXRETURNS)
4507045Seric 	{
4517045Seric 		if (returndepth != MAXRETURNS)
45258151Seric 			syserr("554 returntosender: infinite recursion on %s", returnq->q_paddr);
4537045Seric 		/* don't "unrecurse" and fake a clean exit */
4547045Seric 		/* returndepth--; */
4557045Seric 		return (0);
4567045Seric 	}
4577045Seric 
4585984Seric 	SendBody = sendbody;
45958680Seric 	define('g', e->e_from.q_paddr, e);
46064940Seric 	define('u', NULL, e);
46167880Seric 
46267880Seric 	/* initialize error envelope */
46358179Seric 	ee = newenvelope(&errenvelope, e);
46458050Seric 	define('a', "\201b", ee);
46559057Seric 	define('r', "internal", ee);
46659057Seric 	define('s', "localhost", ee);
46759057Seric 	define('_', "localhost", ee);
4686978Seric 	ee->e_puthdr = putheader;
4696978Seric 	ee->e_putbody = errbody;
47064120Seric 	ee->e_flags |= EF_RESPONSE|EF_METOO;
47155012Seric 	if (!bitset(EF_OLDSTYLE, e->e_flags))
47245155Seric 		ee->e_flags &= ~EF_OLDSTYLE;
47316479Seric 	ee->e_sendqueue = returnq;
47464655Seric 	ee->e_msgsize = ERRORFUDGE;
47567473Seric 	if (!bitset(EF_NORETURN, e->e_flags))
47664655Seric 		ee->e_msgsize += e->e_msgsize;
47764737Seric 	initsys(ee);
47816479Seric 	for (q = returnq; q != NULL; q = q->q_next)
4799375Seric 	{
48059989Seric 		if (bitset(QBADADDR, q->q_flags))
48158559Seric 			continue;
48258559Seric 
48359989Seric 		if (!bitset(QDONTSEND, q->q_flags))
48459989Seric 			ee->e_nrcpts++;
48558559Seric 
48658144Seric 		if (!DontPruneRoutes && pruneroute(q->q_paddr))
48764284Seric 			parseaddr(q->q_paddr, q, RF_COPYPARSE, '\0', NULL, e);
48858144Seric 
4899375Seric 		if (q->q_alias == NULL)
49067546Seric 			addheader("To", q->q_paddr, &ee->e_header);
4919375Seric 	}
49224942Seric 
49357642Seric # ifdef LOG
49458020Seric 	if (LogLevel > 5)
49565054Seric 		syslog(LOG_INFO, "%s: %s: return to sender: %s",
49657642Seric 			e->e_id, ee->e_id, msg);
49757642Seric # endif
49857642Seric 
49967429Seric 	if (strncmp(msg, "Warning:", 8) == 0)
50067261Seric 	{
50167261Seric 		addheader("Subject", msg, ee);
50267546Seric 		addheader("Precedence", "autoreply warning-timeout", &ee->e_header);
50367261Seric 	}
50467429Seric 	else if (strcmp(msg, "Return receipt") == 0)
50567429Seric 	{
50667429Seric 		addheader("Subject", msg, ee);
50767546Seric 		addheader("Precedence", "autoreply return-receipt", &ee->e_header);
50867429Seric 	}
50967261Seric 	else
51067261Seric 	{
51167261Seric 		sprintf(buf, "Returned mail: %.*s", sizeof buf - 20, msg);
51267546Seric 		addheader("Subject", buf, &ee->e_header);
51367546Seric 		addheader("Precedence", "autoreply failure-message", &ee->e_header);
51467261Seric 	}
51559730Seric 	if (SendMIMEErrors)
51659730Seric 	{
51767546Seric 		addheader("MIME-Version", "1.0", &ee->e_header);
51859730Seric 		(void) sprintf(buf, "%s.%ld/%s",
51959730Seric 			ee->e_id, curtime(), MyHostName);
52059730Seric 		ee->e_msgboundary = newstr(buf);
52167880Seric 		(void) sprintf(buf,
52267880Seric 			"multipart/report; report-type=delivery-status; boundary=\"%s\"",
52367880Seric 			ee->e_msgboundary);
52467546Seric 		addheader("Content-Type", buf, &ee->e_header);
52559730Seric 	}
5264633Seric 
5274633Seric 	/* fake up an address header for the from person */
52858050Seric 	expand("\201n", buf, &buf[sizeof buf - 1], e);
52964284Seric 	if (parseaddr(buf, &ee->e_from, RF_COPYALL|RF_SENDERADDR, '\0', NULL, e) == NULL)
5304633Seric 	{
53158151Seric 		syserr("553 Can't parse myself!");
5324633Seric 		ExitStat = EX_SOFTWARE;
5337045Seric 		returndepth--;
5344633Seric 		return (-1);
5354633Seric 	}
53658704Seric 	ee->e_sender = ee->e_from.q_paddr;
5375984Seric 
5386978Seric 	/* push state into submessage */
5396978Seric 	CurEnv = ee;
54058050Seric 	define('f', "\201n", ee);
5419375Seric 	define('x', "Mail Delivery Subsystem", ee);
54258929Seric 	eatheader(ee, TRUE);
5435984Seric 
54463753Seric 	/* mark statistics */
54564284Seric 	markstats(ee, NULLADDR);
54663753Seric 
5476978Seric 	/* actually deliver the error message */
54814876Seric 	sendall(ee, SM_DEFAULT);
5496978Seric 
5506978Seric 	/* restore state */
5517811Seric 	dropenvelope(ee);
55258680Seric 	CurEnv = oldcur;
5537045Seric 	returndepth--;
5546978Seric 
5557045Seric 	/* should check for delivery errors here */
5564633Seric 	return (0);
5574633Seric }
5584633Seric /*
5596978Seric **  ERRBODY -- output the body of an error message.
5606978Seric **
5616978Seric **	Typically this is a copy of the transcript plus a copy of the
5626978Seric **	original offending message.
5636978Seric **
564297Seric **	Parameters:
56565870Seric **		mci -- the mailer connection information.
5669542Seric **		e -- the envelope we are working in.
56767546Seric **		separator -- any possible MIME separator.
56867936Seric **		flags -- to modify the behaviour.
569297Seric **
570297Seric **	Returns:
571297Seric **		none
572297Seric **
573297Seric **	Side Effects:
5746978Seric **		Outputs the body of an error message.
575297Seric */
576297Seric 
57767936Seric errbody(mci, e, separator, flags)
57865870Seric 	register MCI *mci;
5799542Seric 	register ENVELOPE *e;
58067546Seric 	char *separator;
581297Seric {
5826978Seric 	register FILE *xfile;
58359082Seric 	char *p;
58459082Seric 	register ADDRESS *q;
58559082Seric 	bool printheader;
58667936Seric 	int pflags = flags;
5873189Seric 	char buf[MAXLINE];
588297Seric 
58967546Seric 	if (bitset(MCIF_INHEADER, mci->mci_flags))
59067546Seric 	{
59167546Seric 		putline("", mci);
59267546Seric 		mci->mci_flags &= ~MCIF_INHEADER;
59367546Seric 	}
59458680Seric 	if (e->e_parent == NULL)
59558680Seric 	{
59658680Seric 		syserr("errbody: null parent");
59765870Seric 		putline("   ----- Original message lost -----\n", mci);
59858680Seric 		return;
59958680Seric 	}
60058680Seric 
6019057Seric 	/*
60259730Seric 	**  Output MIME header.
60359730Seric 	*/
60459730Seric 
60559730Seric 	if (e->e_msgboundary != NULL)
60659730Seric 	{
60765870Seric 		putline("This is a MIME-encapsulated message", mci);
60865870Seric 		putline("", mci);
60959730Seric 		(void) sprintf(buf, "--%s", e->e_msgboundary);
61065870Seric 		putline(buf, mci);
61165870Seric 		putline("", mci);
61259730Seric 	}
61359730Seric 
61459730Seric 	/*
61563852Seric 	**  Output introductory information.
61663852Seric 	*/
61763852Seric 
61864718Seric 	for (q = e->e_parent->e_sendqueue; q != NULL; q = q->q_next)
61964718Seric 		if (bitset(QBADADDR, q->q_flags))
62064718Seric 			break;
62165054Seric 	if (q == NULL &&
62265054Seric 	    !bitset(EF_FATALERRS|EF_SENDRECEIPT, e->e_parent->e_flags))
62364718Seric 	{
62464718Seric 		putline("    **********************************************",
62565870Seric 			mci);
62664718Seric 		putline("    **      THIS IS A WARNING MESSAGE ONLY      **",
62765870Seric 			mci);
62864718Seric 		putline("    **  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **",
62965870Seric 			mci);
63064718Seric 		putline("    **********************************************",
63165870Seric 			mci);
63265870Seric 		putline("", mci);
63364718Seric 	}
63464718Seric 	sprintf(buf, "The original message was received at %s",
63564718Seric 		arpadate(ctime(&e->e_parent->e_ctime)));
63665870Seric 	putline(buf, mci);
63764025Seric 	expand("from \201_", buf, &buf[sizeof buf - 1], e->e_parent);
63865870Seric 	putline(buf, mci);
63965870Seric 	putline("", mci);
64063852Seric 
64163852Seric 	/*
64255372Seric 	**  Output error message header (if specified and available).
64355372Seric 	*/
64455372Seric 
64567682Seric 	if (ErrMsgFile != NULL && !bitset(EF_SENDRECEIPT, e->e_parent->e_flags))
64655372Seric 	{
64755372Seric 		if (*ErrMsgFile == '/')
64855372Seric 		{
64955372Seric 			xfile = fopen(ErrMsgFile, "r");
65055372Seric 			if (xfile != NULL)
65155372Seric 			{
65255372Seric 				while (fgets(buf, sizeof buf, xfile) != NULL)
65355425Seric 				{
65455425Seric 					expand(buf, buf, &buf[sizeof buf - 1], e);
65565870Seric 					putline(buf, mci);
65655425Seric 				}
65755372Seric 				(void) fclose(xfile);
65865870Seric 				putline("\n", mci);
65955372Seric 			}
66055372Seric 		}
66155372Seric 		else
66255372Seric 		{
66355425Seric 			expand(ErrMsgFile, buf, &buf[sizeof buf - 1], e);
66465870Seric 			putline(buf, mci);
66565870Seric 			putline("", mci);
66655372Seric 		}
66755372Seric 	}
66855372Seric 
66955372Seric 	/*
67059082Seric 	**  Output message introduction
67159082Seric 	*/
67259082Seric 
67359082Seric 	printheader = TRUE;
67459082Seric 	for (q = e->e_parent->e_sendqueue; q != NULL; q = q->q_next)
67559082Seric 	{
67663787Seric 		if (bitset(QBADADDR|QREPORT, q->q_flags))
67759082Seric 		{
67859082Seric 			if (printheader)
67959082Seric 			{
68067880Seric 				putline("   ----- The following addresses have delivery notifications -----",
68165870Seric 					mci);
68259082Seric 				printheader = FALSE;
68359082Seric 			}
68463849Seric 			strcpy(buf, q->q_paddr);
68563787Seric 			if (bitset(QBADADDR, q->q_flags))
68663849Seric 				strcat(buf, "  (unrecoverable error)");
68767880Seric 			else if (bitset(QSENT, q->q_flags))
68867880Seric 				strcat(buf, "  (successfully delivered)");
68963787Seric 			else
69063849Seric 				strcat(buf, "  (transient failure)");
69165870Seric 			putline(buf, mci);
69263849Seric 			if (q->q_alias != NULL)
69363849Seric 			{
69463849Seric 				strcpy(buf, "    (expanded from: ");
69563849Seric 				strcat(buf, q->q_alias->q_paddr);
69663849Seric 				strcat(buf, ")");
69765870Seric 				putline(buf, mci);
69863849Seric 			}
69959082Seric 		}
70059082Seric 	}
70159082Seric 	if (!printheader)
70265870Seric 		putline("\n", mci);
70359082Seric 
70459082Seric 	/*
7059057Seric 	**  Output transcript of errors
7069057Seric 	*/
7079057Seric 
7084086Seric 	(void) fflush(stdout);
7099542Seric 	p = queuename(e->e_parent, 'x');
7109337Seric 	if ((xfile = fopen(p, "r")) == NULL)
7119057Seric 	{
7129337Seric 		syserr("Cannot open %s", p);
71365870Seric 		putline("   ----- Transcript of session is unavailable -----\n", mci);
7149057Seric 	}
7159057Seric 	else
7169057Seric 	{
71765870Seric 		putline("   ----- Transcript of session follows -----\n", mci);
7189542Seric 		if (e->e_xfp != NULL)
7199542Seric 			(void) fflush(e->e_xfp);
7209057Seric 		while (fgets(buf, sizeof buf, xfile) != NULL)
72165870Seric 			putline(buf, mci);
72258680Seric 		(void) xfclose(xfile, "errbody xscript", p);
7239057Seric 	}
724297Seric 	errno = 0;
7254318Seric 
7264318Seric 	/*
72767880Seric 	**  Output machine-readable version.
72867880Seric 	*/
72967880Seric 
73067880Seric 	if (e->e_msgboundary != NULL)
73167880Seric 	{
73267880Seric 		putline("", mci);
73367880Seric 		(void) sprintf(buf, "--%s", e->e_msgboundary);
73467880Seric 		putline(buf, mci);
73567880Seric 		putline("Content-Type: message/delivery-status", mci);
73667880Seric 		putline("", mci);
73767880Seric 
73867880Seric 		/*
73967880Seric 		**  Output per-message information.
74067880Seric 		*/
74167880Seric 
74267880Seric 		/* Original-MTS-Type: is optional */
74367880Seric 
74467880Seric 		/* original envelope id from MAIL FROM: line */
74567880Seric 		if (e->e_parent->e_envid != NULL)
74667880Seric 		{
74767880Seric 			(void) sprintf(buf, "Original-Envelope-Id: %s",
74867880Seric 				e->e_parent->e_envid);
74967880Seric 			putline(buf, mci);
75067880Seric 		}
75167880Seric 
75267880Seric 		/* Final-MTS-Type: is optional (always INET?) */
75367880Seric 
75467880Seric 		/* Final-MTA: seems silly -- this is in the From: line */
75567880Seric 		(void) sprintf(buf, "Final-MTA: %s", MyHostName);
75667880Seric 		putline(buf, mci);
75767880Seric 
75867880Seric 		/*
75967880Seric 		**  Output per-address information.
76067880Seric 		*/
76167880Seric 
76267880Seric 		for (q = e->e_parent->e_sendqueue; q != NULL; q = q->q_next)
76367880Seric 		{
76467880Seric 			register ADDRESS *r;
76567880Seric 
76667880Seric 			if (!bitset(QBADADDR|QREPORT|QRELAYED, q->q_flags))
76767880Seric 				continue;
76867880Seric 			putline("", mci);
76967880Seric 
77067880Seric 			/* Rcpt: -- the name from the RCPT command */
77167880Seric 			for (r = q; r->q_alias != NULL; r = r->q_alias)
77267880Seric 				continue;
77367880Seric 			(void) sprintf(buf, "Rcpt: %s", r->q_paddr);
77467880Seric 			putline(buf, mci);
77567880Seric 
77667880Seric 			/* Action: -- what happened? */
77767880Seric 			if (bitset(QBADADDR, q->q_flags))
77867880Seric 				putline("Action: failed", mci);
77967880Seric 			else if (bitset(QQUEUEUP, q->q_flags))
78067880Seric 				putline("Action: delayed", mci);
78167880Seric 			else if (bitset(QRELAYED, q->q_flags))
78267880Seric 				putline("Action: relayed", mci);
78367880Seric 			else
78467880Seric 				putline("Action: delivered", mci);
78567880Seric 
78667880Seric 			/* Status: -- what _really_ happened? */
78767880Seric 			strcpy(buf, "Status: ");
78867880Seric 			if (q->q_status != NULL)
78967880Seric 				strcat(buf, q->q_status);
79067880Seric 			else if (bitset(QBADADDR, q->q_flags))
79167880Seric 				strcat(buf, "500");
79267880Seric 			else if (bitset(QQUEUEUP, q->q_flags))
79367880Seric 				strcat(buf, "400");
79467880Seric 			else if (bitset(QRELAYED, q->q_flags))
79567880Seric 				strcat(buf, "601");
79667880Seric 			else
79767880Seric 				strcat(buf, "200");
79867880Seric 			putline(buf, mci);
79967880Seric 
80067880Seric 			/* Date: -- fine granularity */
80167880Seric 			if (q->q_statdate == (time_t) 0L)
80267880Seric 				q->q_statdate = curtime();
80367880Seric 			(void) sprintf(buf, "Date: %s",
80467880Seric 				arpadate(ctime(&q->q_statdate)));
80567880Seric 			putline(buf, mci);
80667880Seric 
80767880Seric 			/* Final-Log-Id: -- why isn't this per-message? */
80867880Seric 			(void) sprintf(buf, "Final-Log-Id: %s", e->e_id);
80967880Seric 			putline(buf, mci);
81067880Seric 
81167880Seric 			/* Original-Rcpt: -- passed from on high */
81267880Seric 			if (q->q_orcpt != NULL)
81367880Seric 			{
81467880Seric 				(void) sprintf(buf, "Original-Rcpt: %s",
81567880Seric 					q->q_orcpt);
81667880Seric 				putline(buf, mci);
81767880Seric 			}
81867880Seric 
81967880Seric 			/* Final-Rcpt: -- if through alias */
82067880Seric 			if (q->q_alias != NULL)
82167880Seric 			{
82267880Seric 				(void) sprintf(buf, "Final-Rcpt: %s",
82367880Seric 					q->q_paddr);
82467880Seric 				putline(buf, mci);
82567880Seric 			}
82667880Seric 
82767880Seric 			/* Final-Status: -- same as Status?  XXX */
82867880Seric 
82967880Seric 			/* Remote-MTS-Type: -- always INET?  XXX */
83067880Seric 
83167880Seric 			/* Remote-MTA: -- who was I talking to? */
83267880Seric 			if (q->q_statmta != NULL)
83367880Seric 			{
83467880Seric 				(void) sprintf(buf, "Remote-MTA: %s",
83567880Seric 					q->q_statmta);
83667880Seric 				putline(buf, mci);
83767880Seric 			}
83867880Seric 
83967880Seric 			/* Remote-Rcpt: -- same as Final-Rcpt?  XXX */
84067880Seric 
84167880Seric 			/* Remote-Status: -- same as Final-Status?  XXX */
84267880Seric 		}
84367880Seric 	}
84467880Seric 
84567880Seric 	/*
8464318Seric 	**  Output text of original message
8474318Seric 	*/
8484318Seric 
84967880Seric 	if (bitset(EF_NORETURN, e->e_parent->e_flags))
85058665Seric 		SendBody = FALSE;
85167937Seric 	if (!SendBody && e->e_msgboundary != NULL)
85267937Seric 		pflags |= PF_DELETEMIMEHDRS;
85365870Seric 	putline("", mci);
85458680Seric 	if (e->e_parent->e_df != NULL)
8554199Seric 	{
85667880Seric 		if (e->e_msgboundary == NULL)
85767880Seric 		{
85867880Seric 			if (SendBody)
85967880Seric 				putline("   ----- Original message follows -----\n", mci);
86067880Seric 			else
86167880Seric 				putline("   ----- Message header follows -----\n", mci);
86267880Seric 			(void) fflush(mci->mci_out);
86367880Seric 		}
8645984Seric 		else
8655984Seric 		{
86665870Seric 			putline("", mci);
86759730Seric 			(void) sprintf(buf, "--%s", e->e_msgboundary);
86865870Seric 			putline(buf, mci);
86965870Seric 			putline("Content-Type: message/rfc822", mci);
87065870Seric 			putline("", mci);
8715984Seric 		}
87267936Seric 		putheader(mci, e->e_parent->e_header, e->e_parent, pflags);
87359730Seric 		if (SendBody)
87467936Seric 			putbody(mci, e->e_parent, e->e_msgboundary, pflags);
87559987Seric 		else
87667546Seric 		{
87767546Seric 			putline("", mci);
87865870Seric 			putline("   ----- Message body suppressed -----", mci);
87967546Seric 		}
8804199Seric 	}
8814199Seric 	else
88210170Seric 	{
88365870Seric 		putline("  ----- No message was collected -----\n", mci);
88410170Seric 	}
8854318Seric 
88660010Seric 	if (e->e_msgboundary != NULL)
88760010Seric 	{
88865870Seric 		putline("", mci);
88960010Seric 		(void) sprintf(buf, "--%s--", e->e_msgboundary);
89065870Seric 		putline(buf, mci);
89160010Seric 	}
89265870Seric 	putline("", mci);
89359730Seric 
8944318Seric 	/*
8954318Seric 	**  Cleanup and exit
8964318Seric 	*/
8974318Seric 
898297Seric 	if (errno != 0)
8996978Seric 		syserr("errbody: I/O error");
900297Seric }
90158144Seric /*
90258144Seric **  PRUNEROUTE -- prune an RFC-822 source route
90358144Seric **
90458144Seric **	Trims down a source route to the last internet-registered hop.
90558144Seric **	This is encouraged by RFC 1123 section 5.3.3.
90658144Seric **
90758144Seric **	Parameters:
90858144Seric **		addr -- the address
90958144Seric **
91058144Seric **	Returns:
91158144Seric **		TRUE -- address was modified
91258144Seric **		FALSE -- address could not be pruned
91358144Seric **
91458144Seric **	Side Effects:
91558144Seric **		modifies addr in-place
91658144Seric */
91758144Seric 
91858144Seric pruneroute(addr)
91958144Seric 	char *addr;
92058144Seric {
92166334Seric #if NAMED_BIND
92258144Seric 	char *start, *at, *comma;
92358144Seric 	char c;
92458144Seric 	int rcode;
92558144Seric 	char hostbuf[BUFSIZ];
92658144Seric 	char *mxhosts[MAXMXHOSTS + 1];
92758144Seric 
92858144Seric 	/* check to see if this is really a route-addr */
92958144Seric 	if (*addr != '<' || addr[1] != '@' || addr[strlen(addr) - 1] != '>')
93058144Seric 		return FALSE;
93158144Seric 	start = strchr(addr, ':');
93258144Seric 	at = strrchr(addr, '@');
93358144Seric 	if (start == NULL || at == NULL || at < start)
93458144Seric 		return FALSE;
93558144Seric 
93658144Seric 	/* slice off the angle brackets */
93758144Seric 	strcpy(hostbuf, at + 1);
93858144Seric 	hostbuf[strlen(hostbuf) - 1] = '\0';
93958144Seric 
94058144Seric 	while (start)
94158144Seric 	{
94259273Seric 		if (getmxrr(hostbuf, mxhosts, FALSE, &rcode) > 0)
94358144Seric 		{
94458144Seric 			strcpy(addr + 1, start + 1);
94558144Seric 			return TRUE;
94658144Seric 		}
94758144Seric 		c = *start;
94858144Seric 		*start = '\0';
94958144Seric 		comma = strrchr(addr, ',');
95058144Seric 		if (comma && comma[1] == '@')
95158144Seric 			strcpy(hostbuf, comma + 2);
95258144Seric 		else
95358144Seric 			comma = 0;
95458144Seric 		*start = c;
95558144Seric 		start = comma;
95658144Seric 	}
95758144Seric #endif
95858144Seric 	return FALSE;
95958144Seric }
960