1295Seric /*
23313Seric **  SENDMAIL.H -- Global definitions for sendmail.
3295Seric */
4295Seric 
5295Seric 
6295Seric 
74371Seric # ifdef _DEFINE
84371Seric # define EXTERN
9*5000Seric static char SmailSccsId[] =	"@(#)sendmail.h	3.54	11/21/81";
104371Seric # else  _DEFINE
114371Seric # define EXTERN extern
124371Seric # endif _DEFINE
13295Seric 
144624Seric # ifndef major
154624Seric # include <sys/types.h>
164624Seric # endif major
174183Seric # include <stdio.h>
184183Seric # include <ctype.h>
191390Seric # include "useful.h"
201390Seric 
21295Seric /*
224284Seric **  Configuration constants.
234284Seric **	There shouldn't be much need to change these....
24295Seric */
25295Seric 
264374Seric # define MAXLINE	256		/* max line length */
274374Seric # define MAXNAME	128		/* max length of a name */
284374Seric # define MAXFIELD	2500		/* max total length of a hdr field */
294374Seric # define MAXPV		40		/* max # of parms to mailers */
304374Seric # define MAXHOP		30		/* max value of HopCount */
314384Seric # define MAXATOM	30		/* max atoms per address */
324374Seric # define MAXMAILERS	10		/* maximum mailers known to system */
334374Seric # define SPACESUB	('.'|0200)	/* substitution for <lwsp> */
34295Seric 
354167Seric extern char	Arpa_Info[];	/* the message number for Arpanet info */
36295Seric 
37295Seric 
38295Seric 
393190Seric 
404162Seric 
414167Seric 
42295Seric /*
433190Seric **  Address structure.
443190Seric **	Addresses are stored internally in this structure.
453190Seric */
463190Seric 
473190Seric struct address
483190Seric {
493190Seric 	char		*q_paddr;	/* the printname for the address */
503190Seric 	char		*q_user;	/* user name */
513190Seric 	char		*q_host;	/* host name */
524597Seric 	struct mailer	*q_mailer;	/* mailer to use */
533190Seric 	short		q_rmailer;	/* real mailer (before mapping) */
544149Seric 	u_short		q_flags;	/* status flags, see below */
554213Seric 	short		q_uid;		/* user-id of receiver (if known) */
564398Seric 	short		q_gid;		/* group-id of receiver (if known) */
574079Seric 	char		*q_home;	/* home dir (local mailer only) */
584995Seric 	char		*q_fullname;	/* full name if known */
594995Seric 	struct address	*q_next;	/* chain */
604995Seric 	struct address	*q_alias;	/* address this results from */
614987Seric 	time_t		q_timeout;	/* timeout for this address */
623190Seric };
633190Seric 
643190Seric typedef struct address ADDRESS;
653190Seric 
663190Seric # define QDONTSEND	000001	/* don't send to this address */
674068Seric # define QBADADDR	000002	/* this address is verified bad */
684403Seric # define QGOODUID	000004	/* the q_uid q_gid fields are good */
694422Seric # define QPRIMARY	000010	/* set from argv */
704624Seric # define QQUEUEUP	000020	/* queue for later transmission */
713190Seric 
723190Seric 
733190Seric 
743190Seric 
753190Seric 
763190Seric /*
77295Seric **  Mailer definition structure.
78295Seric **	Every mailer known to the system is declared in this
79295Seric **	structure.  It defines the pathname of the mailer, some
80295Seric **	flags associated with it, and the argument vector to
811390Seric **	pass to it.  The flags are defined in conf.c
82295Seric **
834171Seric **	The argument vector is expanded before actual use.  All
844171Seric **	words except the first are passed through the macro
854171Seric **	processor.
86295Seric */
87295Seric 
88295Seric struct mailer
89295Seric {
903190Seric 	char	*m_name;	/* symbolic name of this mailer */
91295Seric 	char	*m_mailer;	/* pathname of the mailer to use */
924149Seric 	u_long	m_flags;	/* status flags, see below */
93295Seric 	short	m_badstat;	/* the status code to use on unknown error */
944438Seric 	short	m_mno;		/* mailer number internally */
952899Seric 	char	*m_from;	/* pattern for From: header */
963049Seric 	char	**m_argv;	/* template argument vector */
97295Seric };
98295Seric 
994100Seric typedef struct mailer	MAILER;
1004100Seric 
1012899Seric # define M_FOPT		000001	/* mailer takes picky -f flag */
1022899Seric # define M_ROPT		000002	/* mailer takes picky -r flag */
1032899Seric # define M_QUIET	000004	/* don't print error on bad status */
1042899Seric # define M_RESTR	000010	/* must be daemon to execute */
1053190Seric # define M_NHDR		000020	/* don't insert From line */
1064192Seric # define M_LOCAL	000040	/* delivery is to this host */
1072899Seric # define M_STRIPQ	000100	/* strip quote characters from user/host */
1083190Seric # define M_MUSER	000200	/* mailer can handle multiple users at once */
1092899Seric # define M_NEEDFROM	000400	/* need arpa-style From: line */
1102899Seric # define M_NEEDDATE	001000	/* need arpa-style Date: line */
1112899Seric # define M_MSGID	002000	/* need Message-Id: field */
1123153Seric # define M_USR_UPPER	010000	/* preserve user case distinction */
1133153Seric # define M_HST_UPPER	020000	/* preserve host case distinction */
1143390Seric # define M_FULLNAME	040000	/* want Full-Name field */
115295Seric 
1164317Seric # define M_ARPAFMT	(M_NEEDDATE|M_NEEDFROM|M_MSGID)
1172899Seric 
1184597Seric EXTERN MAILER	*Mailer[MAXMAILERS+1];
119295Seric 
1204597Seric EXTERN MAILER	*LocalMailer;		/* ptr to local mailer */
1214597Seric EXTERN MAILER	*ProgMailer;		/* ptr to program mailer */
122295Seric 
123295Seric 
1242899Seric /*
1252899Seric **  Header structure.
1262899Seric **	This structure is used internally to store header items.
1272899Seric */
128295Seric 
1292899Seric struct header
1302899Seric {
1312899Seric 	char		*h_field;	/* the name of the field */
1322899Seric 	char		*h_value;	/* the value of that field */
1332899Seric 	struct header	*h_link;	/* the next header */
1344149Seric 	u_short		h_flags;	/* status bits, see below */
1354149Seric 	u_long		h_mflags;	/* m_flags bits needed */
1362899Seric };
137295Seric 
1382899Seric typedef struct header	HDR;
1392899Seric 
1404371Seric EXTERN HDR	*Header;	/* head of header list */
1412899Seric 
142295Seric /*
1432899Seric **  Header information structure.
1442899Seric **	Defined in conf.c, this struct declares the header fields
1452899Seric **	that have some magic meaning.
1462899Seric */
1472899Seric 
1482899Seric struct hdrinfo
1492899Seric {
1502899Seric 	char	*hi_field;	/* the name of the field */
1514149Seric 	u_short	hi_flags;	/* status bits, see below */
1524149Seric 	u_short	hi_mflags;	/* m_flags needed for this field */
1532899Seric };
1542899Seric 
1552899Seric extern struct hdrinfo	HdrInfo[];
1562899Seric 
1572899Seric /* bits for h_flags and hi_flags */
1583060Seric # define H_EOH		00001	/* this field terminates header */
1592899Seric # define H_DEFAULT	00004	/* if another value is found, drop this */
1602899Seric # define H_USED		00010	/* indicates that this has been output */
1613386Seric # define H_CHECK	00020	/* check h_mflags against m_flags */
1623390Seric # define H_ACHECK	00040	/* ditto, but always (not just default) */
1634149Seric # define H_FORCE	00100	/* force this field, even if default */
1644222Seric # define H_ADDR		00200	/* this field contains addresses */
1652899Seric 
1662899Seric 
1674624Seric 
1683153Seric /*
1694624Seric **  Work queue.
1704624Seric */
1714624Seric 
1724624Seric struct work
1734624Seric {
1744624Seric 	char		*w_name;	/* name of control file */
1754624Seric 	short		w_pri;		/* priority of message, see below */
1764624Seric 	long		w_size;		/* length of data file */
1774624Seric 	struct work	*w_next;	/* next in queue */
1784624Seric };
1794624Seric 
1804624Seric typedef struct work	WORK;
1814624Seric 
1824624Seric EXTERN WORK	*WorkQ;			/* queue of things to be done */
1834624Seric 
1844624Seric 
1854624Seric /*
1864624Seric **  Message priorities.
1874633Seric **	Priorities > 0 should be preemptive.
1884624Seric */
1894624Seric 
1904633Seric # define PRI_ALERT	20
1914633Seric # define PRI_QUICK	10
1924633Seric # define PRI_FIRSTCL	0
1934633Seric # define PRI_NORMAL	-4
1944633Seric # define PRI_SECONDCL	-10
1954633Seric # define PRI_THIRDCL	-20
1964624Seric 
1974624Seric EXTERN int	MsgPriority;		/* priority of this message */
1984624Seric 
1994624Seric 
2004624Seric 
2014624Seric /*
2023153Seric **  Rewrite rules.
2033153Seric */
2042899Seric 
2053153Seric struct rewrite
2063153Seric {
2073153Seric 	char	**r_lhs;	/* pattern match */
2083153Seric 	char	**r_rhs;	/* substitution value */
2093153Seric 	struct rewrite	*r_next;/* next in chain */
2103153Seric };
2112899Seric 
2124090Seric extern struct rewrite	*RewriteRules[];
2133153Seric 
2144060Seric # define MATCHANY	'\020'	/* match one or more tokens */
2154060Seric # define MATCHONE	'\021'	/* match exactly one token */
2164060Seric # define MATCHCLASS	'\022'	/* match one token in a class */
2174467Seric # define MATCHREPL	'\023'	/* replacement on RHS for above */
2183153Seric 
2193153Seric # define CANONNET	'\025'	/* canonical net, next token */
2203153Seric # define CANONHOST	'\026'	/* canonical host, next token */
2213153Seric # define CANONUSER	'\027'	/* canonical user, next N tokens */
2223153Seric 
2233153Seric 
2243153Seric 
2254056Seric /*
2264056Seric **  Symbol table definitions
2274056Seric */
2283153Seric 
2294056Seric struct symtab
2304056Seric {
2314056Seric 	char		*s_name;	/* name to be entered */
2324100Seric 	char		s_type;		/* general type (see below) */
2334056Seric 	struct symtab	*s_next;	/* pointer to next in chain */
2344100Seric 	union
2354100Seric 	{
2364100Seric 		long	sv_class;	/* bit-map of word classes */
2374100Seric 		ADDRESS	*sv_addr;	/* pointer to address header */
2384100Seric 		MAILER	*sv_mailer;	/* pointer to mailer */
2394100Seric 		char	*sv_alias;	/* alias */
2404100Seric 	}	s_value;
2414056Seric };
2424056Seric 
2434056Seric typedef struct symtab	STAB;
2444056Seric 
2454100Seric /* symbol types */
2464100Seric # define ST_UNDEF	0	/* undefined type */
2474100Seric # define ST_CLASS	1	/* class map */
2484100Seric # define ST_ADDRESS	2	/* an address in parsed format */
2494100Seric # define ST_MAILER	3	/* a mailer header */
2504100Seric # define ST_ALIAS	4	/* an alias */
2514100Seric 
2524100Seric # define s_class	s_value.sv_class
2534100Seric # define s_addr		s_value.sv_addr
2544100Seric # define s_mailer	s_value.sv_mailer
2554100Seric # define s_alias	s_value.sv_alias
2564100Seric 
2574056Seric extern STAB	*stab();
2584056Seric 
2594056Seric /* opcodes to stab */
2604056Seric # define ST_FIND	0	/* find entry */
2614056Seric # define ST_ENTER	1	/* enter if not there */
2624056Seric 
2634056Seric 
2644056Seric 
2654056Seric 
2662899Seric /*
2674284Seric **  Statistics structure.
2684284Seric */
2694284Seric 
2704284Seric struct statistics
2714284Seric {
2724284Seric 	time_t	stat_itime;		/* file initialization time */
2734284Seric 	short	stat_size;		/* size of this structure */
2744284Seric 	long	stat_nf[MAXMAILERS];	/* # msgs from each mailer */
2754284Seric 	long	stat_bf[MAXMAILERS];	/* kbytes from each mailer */
2764284Seric 	long	stat_nt[MAXMAILERS];	/* # msgs to each mailer */
2774284Seric 	long	stat_bt[MAXMAILERS];	/* kbytes to each mailer */
2784284Seric };
2794284Seric 
2804371Seric EXTERN struct statistics	Stat;
2814284Seric extern long			kbytes();	/* for _bf, _bt */
2824284Seric 
2834284Seric 
2844284Seric 
2854284Seric 
2864284Seric /*
287295Seric **  Global variables.
288295Seric */
289295Seric 
2904371Seric EXTERN bool	FromFlag;	/* if set, "From" person is explicit */
2914371Seric EXTERN bool	MailBack;	/* mail back response on error */
2924371Seric EXTERN bool	BerkNet;	/* called from BerkNet */
2934371Seric EXTERN bool	WriteBack;	/* write back response on error */
2944371Seric EXTERN bool	NoAlias;	/* if set, don't do any aliasing */
2954371Seric EXTERN bool	ForceMail;	/* if set, mail even if already got a copy */
2964371Seric EXTERN bool	MeToo;		/* send to the sender also */
2974371Seric EXTERN bool	IgnrDot;	/* don't let dot end messages */
2984371Seric EXTERN bool	SaveFrom;	/* save leading "From" lines */
2994371Seric EXTERN bool	Verbose;	/* set if blow-by-blow desired */
3004371Seric EXTERN bool	GrabTo;		/* if set, get recipients from msg */
3014371Seric EXTERN bool	DontSend;	/* mark recipients as QDONTSEND */
3024371Seric EXTERN bool	NoReturn;	/* don't return letter to sender */
3034537Seric EXTERN bool	Daemon;		/* running as a daemon */
3044553Seric EXTERN bool	Smtp;		/* using SMTP over connection */
3054553Seric EXTERN bool	SuprErrs;	/* set if we are suppressing errors */
3064624Seric EXTERN bool	QueueUp;	/* queue this message for future xmission */
3074624Seric EXTERN bool	QueueRun;	/* currently running something from the queue */
3084711Seric EXTERN bool	HoldErrs;	/* only output errors to transcript */
3094711Seric EXTERN bool	ArpaMode;	/* set if running arpanet protocol */
3104624Seric extern time_t	TimeOut;	/* time until timeout */
3114553Seric EXTERN FILE	*InChannel;	/* input connection */
3124553Seric EXTERN FILE	*OutChannel;	/* output connection */
3134553Seric EXTERN FILE	*TempFile;	/* mail temp file */
3144711Seric EXTERN FILE	*Xscript;	/* mail transcript file */
3154537Seric EXTERN int	RealUid;	/* when Daemon, real uid of caller */
3164537Seric EXTERN int	RealGid;	/* when Daemon, real gid of caller */
3174371Seric EXTERN int	OldUmask;	/* umask when sendmail starts up */
3184371Seric EXTERN int	Debug;		/* debugging level */
3194371Seric EXTERN int	Errors;		/* set if errors */
3204371Seric EXTERN int	ExitStat;	/* exit status code */
3214553Seric EXTERN int	HopCount;	/* hop count */
3224553Seric EXTERN int	AliasLevel;	/* depth of aliasing */
3234624Seric EXTERN time_t	QueueIntvl;	/* intervals between running the queue */
3244553Seric EXTERN char	*OrigFrom;	/* the From: line read from the message */
3254553Seric EXTERN char	*To;		/* the target person */
3264553Seric EXTERN char	*HostName;	/* name of this host for SMTP messages */
3274624Seric EXTERN char	*InFileName;	/* input file name */
3284624Seric EXTERN char	*Transcript;	/* the transcript file name */
3294624Seric extern char	*XcriptFile;	/* template for Transcript */
3304624Seric extern char	*AliasFile;	/* location of alias file */
3314624Seric extern char	*ConfFile;	/* location of configuration file */
3324624Seric extern char	*StatFile;	/* location of statistics summary */
3334624Seric extern char	*QueueDir;	/* location of queue directory */
3344371Seric EXTERN ADDRESS	From;		/* the person it is from */
335*5000Seric EXTERN ADDRESS	*SendQueue;	/* list of message recipients */
3364553Seric EXTERN long	MsgSize;	/* size of the message in bytes */
3374624Seric EXTERN time_t	CurTime;	/* time of this message */
338295Seric 
339295Seric 
340295Seric # include	<sysexits.h>
341295Seric 
342295Seric # define setstat(s)		{ if (ExitStat == EX_OK) ExitStat = s; }
3434085Seric 
3444085Seric 
3454085Seric /* useful functions */
3464085Seric 
3474085Seric extern char	*newstr();
3484085Seric extern ADDRESS	*parse();
3494085Seric extern char	*xalloc();
3504085Seric extern char	*expand();
3514085Seric extern bool	sameaddr();
352