1295Seric /* 22979Seric ** POSTBOX.H -- Global definitions for postbox. 3295Seric ** 4*3153Seric ** @(#)sendmail.h 3.6 03/09/81 5295Seric */ 6295Seric 7295Seric 8295Seric 9295Seric 101390Seric # include "useful.h" 111390Seric 12295Seric /* 13295Seric ** Manifest constants. 14295Seric */ 15295Seric 16295Seric # define MAXLINE 256 /* maximum line length */ 17295Seric # define MAXNAME 128 /* maximum length of a name */ 181379Seric # define MAXFIELD 2500 /* maximum total length of a header field */ 19295Seric # define MAXPV 15 /* maximum # of parms to mailers */ 20295Seric # define MAXHOP 30 /* maximum value of HopCount */ 21*3153Seric # define MAXATOM 15 /* max atoms per address */ 221516Seric # define ALIASFILE "/usr/lib/aliases" /* location of alias file */ 23295Seric 24295Seric 25295Seric 26295Seric 27295Seric 28295Seric /* 29295Seric ** Mailer definition structure. 30295Seric ** Every mailer known to the system is declared in this 31295Seric ** structure. It defines the pathname of the mailer, some 32295Seric ** flags associated with it, and the argument vector to 331390Seric ** pass to it. The flags are defined in conf.c 34295Seric ** 352899Seric ** The host map is a list of lists of strings. Within each 362899Seric ** list, any host is mapped to the last host in the list. 372899Seric ** This allows multiple names, as well as doing clever 382899Seric ** mail grouping in point-to-point networks. Note: this 392899Seric ** is only used internally, so the apparent host is still 402899Seric ** kept around. 412899Seric ** 42295Seric ** The argument vector is expanded before actual use. Every- 43295Seric ** thing is passed through except for things starting with "$". 441390Seric ** "$x" defines some interpolation, as described in conf.c 45295Seric ** "$x" where x is unknown expands to "x", so use "$$" to get "$". 46295Seric */ 47295Seric 48295Seric struct mailer 49295Seric { 50295Seric char *m_mailer; /* pathname of the mailer to use */ 51*3153Seric char *m_name; /* symbolic name of this mailer */ 52295Seric short m_flags; /* status flags, see below */ 53295Seric short m_badstat; /* the status code to use on unknown error */ 542899Seric char *m_from; /* pattern for From: header */ 553049Seric char **m_argv; /* template argument vector */ 56295Seric }; 57295Seric 582899Seric # define M_FOPT 000001 /* mailer takes picky -f flag */ 592899Seric # define M_ROPT 000002 /* mailer takes picky -r flag */ 602899Seric # define M_QUIET 000004 /* don't print error on bad status */ 612899Seric # define M_RESTR 000010 /* must be daemon to execute */ 622899Seric # define M_HDR 000020 /* insert From line */ 632899Seric # define M_NOHOST 000040 /* ignore host in comparisons */ 642899Seric # define M_STRIPQ 000100 /* strip quote characters from user/host */ 652899Seric # define M_FHDR 000200 /* force good From line */ 662899Seric # define M_NEEDFROM 000400 /* need arpa-style From: line */ 672899Seric # define M_NEEDDATE 001000 /* need arpa-style Date: line */ 682899Seric # define M_MSGID 002000 /* need Message-Id: field */ 692899Seric # define M_COMMAS 004000 /* need comma-seperated address lists */ 70*3153Seric # define M_USR_UPPER 010000 /* preserve user case distinction */ 71*3153Seric # define M_HST_UPPER 020000 /* preserve host case distinction */ 72295Seric 732899Seric # define M_ARPAFMT (M_NEEDDATE|M_NEEDFROM|M_MSGID|M_COMMAS) 742899Seric 753049Seric extern struct mailer *Mailer[]; 76295Seric 77295Seric 78295Seric /* 79295Seric ** Address structure. 80295Seric ** Addresses are stored internally in this structure. 81295Seric */ 82295Seric 83295Seric struct address 84295Seric { 85295Seric char *q_paddr; /* the printname for the address */ 86295Seric char *q_user; /* user name */ 87295Seric char *q_host; /* host name */ 883049Seric short q_mailer; /* mailer to use */ 893049Seric short q_rmailer; /* real mailer (before mapping) */ 90295Seric struct address *q_next; /* chain */ 91295Seric struct address *q_prev; /* back pointer */ 92295Seric }; 93295Seric 942979Seric typedef struct address ADDRESS; 95295Seric 96295Seric /* some other primitives */ 97295Seric # define nxtinq(q) ((q)->q_next) 98295Seric # define clearq(q) (q)->q_next = (q)->q_prev = NULL 99295Seric 1002979Seric extern ADDRESS SendQ; /* queue of people to send to */ 1012979Seric extern ADDRESS AliasQ; /* queue of people that are aliases */ 102295Seric 103295Seric 104295Seric 105295Seric 106295Seric 1072899Seric /* 1082899Seric ** Header structure. 1092899Seric ** This structure is used internally to store header items. 1102899Seric */ 111295Seric 1122899Seric struct header 1132899Seric { 1142899Seric char *h_field; /* the name of the field */ 1152899Seric char *h_value; /* the value of that field */ 1162899Seric struct header *h_link; /* the next header */ 1172899Seric short h_flags; /* status bits, see below */ 1182899Seric }; 119295Seric 1202899Seric typedef struct header HDR; 1212899Seric 1222899Seric extern HDR *Header; /* head of header list */ 1232899Seric 124295Seric /* 1252899Seric ** Header information structure. 1262899Seric ** Defined in conf.c, this struct declares the header fields 1272899Seric ** that have some magic meaning. 1282899Seric */ 1292899Seric 1302899Seric struct hdrinfo 1312899Seric { 1322899Seric char *hi_field; /* the name of the field */ 1332899Seric short hi_flags; /* status bits, see below */ 1343060Seric char **hi_pptr; /* &ptr to point to this value */ 1352899Seric }; 1362899Seric 1372899Seric extern struct hdrinfo HdrInfo[]; 1382899Seric 1392899Seric /* bits for h_flags and hi_flags */ 1403060Seric # define H_EOH 00001 /* this field terminates header */ 1412899Seric # define H_DELETE 00002 /* don't send this field */ 1422899Seric # define H_DEFAULT 00004 /* if another value is found, drop this */ 1432899Seric # define H_USED 00010 /* indicates that this has been output */ 1442899Seric 1452899Seric 146*3153Seric /* 147*3153Seric ** Rewrite rules. 148*3153Seric */ 1492899Seric 150*3153Seric struct rewrite 151*3153Seric { 152*3153Seric char **r_lhs; /* pattern match */ 153*3153Seric char **r_rhs; /* substitution value */ 154*3153Seric struct rewrite *r_next;/* next in chain */ 155*3153Seric }; 1562899Seric 157*3153Seric struct rewrite *RewriteRules; 158*3153Seric 159*3153Seric # define MATCHANY '\020' /* match exactly one token */ 160*3153Seric # define MATCHONE '\021' /* match one or more tokens */ 161*3153Seric 162*3153Seric # define CANONNET '\025' /* canonical net, next token */ 163*3153Seric # define CANONHOST '\026' /* canonical host, next token */ 164*3153Seric # define CANONUSER '\027' /* canonical user, next N tokens */ 165*3153Seric 166*3153Seric 167*3153Seric 168*3153Seric 1692899Seric /* 170295Seric ** Global variables. 171295Seric */ 172295Seric 1731390Seric extern bool ArpaFmt; /* if set, message is in arpanet fmt */ 1741390Seric extern bool FromFlag; /* if set, "From" person is explicit */ 1751390Seric extern bool Debug; /* if set, debugging info */ 1761390Seric extern bool MailBack; /* mail back response on error */ 1771390Seric extern bool BerkNet; /* called from BerkNet */ 1781390Seric extern bool WriteBack; /* write back response on error */ 1791390Seric extern bool NoAlias; /* if set, don't do any aliasing */ 1801390Seric extern bool ForceMail; /* if set, mail even if already got a copy */ 1811390Seric extern bool MeToo; /* send to the sender also */ 1821390Seric extern bool UseMsgId; /* put msg-id's in all msgs [conf.c] */ 1831390Seric extern bool IgnrDot; /* don't let dot end messages */ 1841390Seric extern bool SaveFrom; /* save leading "From" lines */ 1851516Seric extern int Errors; /* set if errors */ 186295Seric extern int ExitStat; /* exit status code */ 187295Seric extern char InFileName[]; /* input file name */ 188295Seric extern char Transcript[]; /* the transcript file name */ 1892899Seric extern char *MsgId; /* the message id for this message */ 1902899Seric extern char *Date; /* origination date (UNIX format) */ 1912979Seric extern ADDRESS From; /* the person it is from */ 192295Seric extern char *To; /* the target person */ 193295Seric extern int HopCount; /* hop count */ 194295Seric 195295Seric 196295Seric # include <sysexits.h> 197295Seric 198295Seric # define setstat(s) { if (ExitStat == EX_OK) ExitStat = s; } 199