From a8ea57326833c053c280899a7f4c7be86a2035d9 Mon Sep 17 00:00:00 2001 From: Eric Allman Date: Sun, 6 Mar 1983 19:25:18 -0800 Subject: [PATCH] Add H_RESENT flag to header flags to indicate fields that are associated with a resent message. SCCS-mr: usr.sbin/sendmail/src/sendmail.h 201 SCCS-vsn: usr.sbin/sendmail/src/sendmail.h 3.115 --- usr/src/usr.sbin/sendmail/src/sendmail.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/src/usr.sbin/sendmail/src/sendmail.h b/usr/src/usr.sbin/sendmail/src/sendmail.h index e231d5c33e..5de3d534a2 100644 --- a/usr/src/usr.sbin/sendmail/src/sendmail.h +++ b/usr/src/usr.sbin/sendmail/src/sendmail.h @@ -7,7 +7,7 @@ # ifdef _DEFINE # define EXTERN # ifndef lint -static char SmailSccsId[] = "@(#)sendmail.h 3.114 %G%"; +static char SmailSccsId[] = "@(#)sendmail.h 3.115 %G%"; # endif lint # else _DEFINE # define EXTERN extern @@ -178,6 +178,7 @@ extern struct hdrinfo HdrInfo[]; # define H_EOH 00001 /* this field terminates header */ # define H_RCPT 00002 /* contains recipient addresses */ # define H_DEFAULT 00004 /* if another value is found, drop this */ +# define H_RESENT 00010 /* this address is a "resent-..." address */ # define H_CHECK 00020 /* check h_mflags against m_flags */ # define H_ACHECK 00040 /* ditto, but always (not just default) */ # define H_FORCE 00100 /* force this field, even if default */ -- 2.20.1