From 00289accda875898bb2dc93c3681d29d455634b9 Mon Sep 17 00:00:00 2001 From: joerg Date: Fri, 2 Jan 1998 16:44:13 +0000 Subject: Teach boring old mail(1) about the use of the REPLYTO environment variable which is de-facto standard for MUAs. Teach bomail to generate an in-reply-to header so threading MUAs and mail->news gateways won't lose context. While i was at it, removed two gratuitous standard violations for functions starting with an underscore. --- usr.bin/mail/names.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.bin/mail/names.c') diff --git a/usr.bin/mail/names.c b/usr.bin/mail/names.c index e17e9f2..2050942 100644 --- a/usr.bin/mail/names.c +++ b/usr.bin/mail/names.c @@ -261,7 +261,8 @@ outof(names, fo, hp) } (void) fcntl(image, F_SETFD, 1); fprintf(fout, "From %s %s", myname, date); - puthead(hp, fout, GTO|GSUBJECT|GCC|GNL); + puthead(hp, fout, + GTO|GSUBJECT|GCC|GREPLYTO|GINREPLYTO|GNL); while ((c = getc(fo)) != EOF) (void) putc(c, fout); rewind(fo); -- cgit v1.1