1295Seric /* 234921Sbostic * Copyright (c) 1983 Eric P. Allman 362532Sbostic * Copyright (c) 1988, 1993 462532Sbostic * The Regents of the University of California. All rights reserved. 533731Sbostic * 642829Sbostic * %sccs.include.redist.c% 733731Sbostic * 8*67687Seric * @(#)sendmail.h 8.56 (Berkeley) 08/15/94 933731Sbostic */ 1022727Sdist 1122727Sdist /* 123313Seric ** SENDMAIL.H -- Global definitions for sendmail. 13295Seric */ 14295Seric 154371Seric # ifdef _DEFINE 164371Seric # define EXTERN 175194Seric # ifndef lint 18*67687Seric static char SmailSccsId[] = "@(#)sendmail.h 8.56 08/15/94"; 1958889Seric # endif 2056795Seric # else /* _DEFINE */ 214371Seric # define EXTERN extern 2256795Seric # endif /* _DEFINE */ 23295Seric 2458331Seric # include <unistd.h> 2556795Seric # include <stddef.h> 2656795Seric # include <stdlib.h> 274183Seric # include <stdio.h> 284183Seric # include <ctype.h> 297355Seric # include <setjmp.h> 3051961Seric # include <sysexits.h> 3156795Seric # include <string.h> 3256795Seric # include <time.h> 3356795Seric # include <errno.h> 3456795Seric 359144Seric # include "conf.h" 361390Seric # include "useful.h" 371390Seric 387674Seric # ifdef LOG 3956215Seric # include <syslog.h> 4056795Seric # endif /* LOG */ 4110679Seric 4224943Seric # ifdef DAEMON 4324943Seric # include <sys/socket.h> 4458778Seric # endif 4564814Seric # ifdef NETUNIX 4664814Seric # include <sys/un.h> 4764814Seric # endif 4858778Seric # ifdef NETINET 4924943Seric # include <netinet/in.h> 5058778Seric # endif 5158778Seric # ifdef NETISO 5258778Seric # include <netiso/iso.h> 5358778Seric # endif 5458871Seric # ifdef NETNS 5558871Seric # include <netns/ns.h> 5658871Seric # endif 5758871Seric # ifdef NETX25 5858871Seric # include <netccitt/x25.h> 5958871Seric # endif 6010679Seric 6124943Seric 6216907Seric 6316907Seric 6410679Seric /* 6510679Seric ** Data structure for bit maps. 6610679Seric ** 6710679Seric ** Each bit in this map can be referenced by an ascii character. 6867611Seric ** This is 256 possible bits, or 32 8-bit bytes. 6910679Seric */ 7010679Seric 7167611Seric #define BITMAPBYTES 32 /* number of bytes in a bit map */ 7210679Seric #define BYTEBITS 8 /* number of bits in a byte */ 7310679Seric 7410679Seric /* internal macros */ 7510679Seric #define _BITWORD(bit) (bit / (BYTEBITS * sizeof (int))) 7610679Seric #define _BITBIT(bit) (1 << (bit % (BYTEBITS * sizeof (int)))) 7710679Seric 7810679Seric typedef int BITMAP[BITMAPBYTES / sizeof (int)]; 7910679Seric 8010679Seric /* test bit number N */ 8110679Seric #define bitnset(bit, map) ((map)[_BITWORD(bit)] & _BITBIT(bit)) 8210679Seric 8310679Seric /* set bit number N */ 8410679Seric #define setbitn(bit, map) (map)[_BITWORD(bit)] |= _BITBIT(bit) 8510679Seric 8610679Seric /* clear bit number N */ 8710679Seric #define clrbitn(bit, map) (map)[_BITWORD(bit)] &= ~_BITBIT(bit) 8810679Seric 8910679Seric /* clear an entire bit map */ 9011053Seric #define clrbitmap(map) bzero((char *) map, BITMAPBYTES) 917799Seric /* 923190Seric ** Address structure. 933190Seric ** Addresses are stored internally in this structure. 943190Seric */ 953190Seric 963190Seric struct address 973190Seric { 983190Seric char *q_paddr; /* the printname for the address */ 993190Seric char *q_user; /* user name */ 10040973Sbostic char *q_ruser; /* real user name, or NULL if q_user */ 1013190Seric char *q_host; /* host name */ 1024597Seric struct mailer *q_mailer; /* mailer to use */ 1034149Seric u_short q_flags; /* status flags, see below */ 10455369Seric uid_t q_uid; /* user-id of receiver (if known) */ 10555369Seric gid_t q_gid; /* group-id of receiver (if known) */ 1064079Seric char *q_home; /* home dir (local mailer only) */ 1074995Seric char *q_fullname; /* full name if known */ 1084995Seric struct address *q_next; /* chain */ 1094995Seric struct address *q_alias; /* address this results from */ 11058170Seric char *q_owner; /* owner of q_alias */ 1115034Seric struct address *q_tchain; /* temporary use chain */ 1124987Seric time_t q_timeout; /* timeout for this address */ 1133190Seric }; 1143190Seric 1153190Seric typedef struct address ADDRESS; 1163190Seric 1173190Seric # define QDONTSEND 000001 /* don't send to this address */ 1184068Seric # define QBADADDR 000002 /* this address is verified bad */ 1194403Seric # define QGOODUID 000004 /* the q_uid q_gid fields are good */ 1204422Seric # define QPRIMARY 000010 /* set from argv */ 1214624Seric # define QQUEUEUP 000020 /* queue for later transmission */ 12247285Seric # define QSENT 000040 /* has been successfully delivered */ 12351316Seric # define QNOTREMOTE 000100 /* not an address for remote forwarding */ 12458060Seric # define QSELFREF 000200 /* this address references itself */ 12558154Seric # define QVERIFIED 000400 /* verified, but not expanded */ 12663787Seric # define QREPORT 001000 /* report this address in return message */ 12765205Seric # define QBOGUSSHELL 002000 /* this entry has an invalid shell listed */ 12865493Seric # define QUNSAFEADDR 004000 /* address aquired through an unsafe path */ 12964284Seric 13064284Seric # define NULLADDR ((ADDRESS *) NULL) 1316902Seric /* 132295Seric ** Mailer definition structure. 133295Seric ** Every mailer known to the system is declared in this 134295Seric ** structure. It defines the pathname of the mailer, some 135295Seric ** flags associated with it, and the argument vector to 1361390Seric ** pass to it. The flags are defined in conf.c 137295Seric ** 1384171Seric ** The argument vector is expanded before actual use. All 1394171Seric ** words except the first are passed through the macro 1404171Seric ** processor. 141295Seric */ 142295Seric 143295Seric struct mailer 144295Seric { 1453190Seric char *m_name; /* symbolic name of this mailer */ 146295Seric char *m_mailer; /* pathname of the mailer to use */ 14710679Seric BITMAP m_flags; /* status flags, see below */ 1484438Seric short m_mno; /* mailer number internally */ 1493049Seric char **m_argv; /* template argument vector */ 15058013Seric short m_sh_rwset; /* rewrite set: sender header addresses */ 15158013Seric short m_se_rwset; /* rewrite set: sender envelope addresses */ 15258013Seric short m_rh_rwset; /* rewrite set: recipient header addresses */ 15358013Seric short m_re_rwset; /* rewrite set: recipient envelope addresses */ 15410323Seric char *m_eol; /* end of line string */ 15510679Seric long m_maxsize; /* size limit on message to this mailer */ 15652106Seric int m_linelimit; /* max # characters per line */ 15758932Seric char *m_execdir; /* directory to chdir to before execv */ 15867600Seric uid_t m_uid; /* UID to run as */ 15967600Seric gid_t m_gid; /* GID to run as */ 160295Seric }; 161295Seric 1624100Seric typedef struct mailer MAILER; 1634100Seric 1645601Seric /* bits for m_flags */ 16559280Seric # define M_ESMTP 'a' /* run Extended SMTP protocol */ 16667473Seric # define M_ALIASABLE 'A' /* user can be LHS of an alias */ 16759532Seric # define M_BLANKEND 'b' /* ensure blank line at end of message */ 16858035Seric # define M_NOCOMMENT 'c' /* don't include comment part of address */ 16916871Seric # define M_CANONICAL 'C' /* make addresses canonical "u@dom" */ 17067619Seric # define M_NOBRACKET 'd' /* never angle bracket envelope route-addrs */ 17158035Seric /* 'D' /* CF: include Date: */ 17216871Seric # define M_EXPENSIVE 'e' /* it costs to use this mailer.... */ 17316871Seric # define M_ESCFROM 'E' /* escape From lines to >From */ 17410679Seric # define M_FOPT 'f' /* mailer takes picky -f flag */ 17558035Seric /* 'F' /* CF: include From: or Resent-From: */ 17659537Seric # define M_NO_NULL_FROM 'g' /* sender of errors should be $g */ 17716871Seric # define M_HST_UPPER 'h' /* preserve host case distinction */ 17864285Seric # define M_PREHEAD 'H' /* MAIL11V3: preview headers */ 17916871Seric # define M_INTERNAL 'I' /* SMTP to another sendmail site */ 18067619Seric # define M_NOLOOPCHECK 'k' /* don't check for loops in HELO command */ 18158139Seric # define M_LOCALMAILER 'l' /* delivery is to this host */ 18216871Seric # define M_LIMITS 'L' /* must enforce SMTP line limits */ 18316871Seric # define M_MUSER 'm' /* can handle multiple users at once */ 18458035Seric /* 'M' /* CF: include Message-Id: */ 18516871Seric # define M_NHDR 'n' /* don't insert From line */ 18664285Seric # define M_MANYSTATUS 'N' /* MAIL11V3: DATA returns multi-status */ 18767473Seric # define M_RUNASRCPT 'o' /* always run mailer as recipient */ 18816871Seric # define M_FROMPATH 'p' /* use reverse-path in MAIL FROM: */ 18958035Seric /* 'P' /* CF: include Return-Path: */ 19010679Seric # define M_ROPT 'r' /* mailer takes picky -r flag */ 19117466Seric # define M_SECURE_PORT 'R' /* try to send on a reserved TCP port */ 19216871Seric # define M_STRIPQ 's' /* strip quote chars from user/host */ 19367601Seric # define M_SPECIFIC_UID 'S' /* run as specific uid/gid */ 19410679Seric # define M_USR_UPPER 'u' /* preserve user case distinction */ 19510679Seric # define M_UGLYUUCP 'U' /* this wants an ugly UUCP from line */ 19658035Seric /* 'V' /* UIUC: !-relativize all addresses */ 19767473Seric # define M_HASPWENT 'w' /* check for /etc/passwd entry */ 19859280Seric /* 'x' /* CF: include Full-Name: */ 19910679Seric # define M_XDOT 'X' /* use hidden-dot algorithm */ 20067473Seric # define M_TRYRULESET5 '5' /* use ruleset 5 after local aliasing */ 20152106Seric # define M_7BITS '7' /* use 7-bit path */ 20267473Seric # define M_CHECKINCLUDE ':' /* check for :include: files */ 20367473Seric # define M_CHECKPROG '|' /* check for |program addresses */ 20467473Seric # define M_CHECKFILE '/' /* check for /file addresses */ 20567473Seric # define M_CHECKUDB '@' /* user can be user database key */ 206295Seric 2074597Seric EXTERN MAILER *Mailer[MAXMAILERS+1]; 208295Seric 2094597Seric EXTERN MAILER *LocalMailer; /* ptr to local mailer */ 2104597Seric EXTERN MAILER *ProgMailer; /* ptr to program mailer */ 21157393Seric EXTERN MAILER *FileMailer; /* ptr to *file* mailer */ 21257393Seric EXTERN MAILER *InclMailer; /* ptr to *include* mailer */ 2136902Seric /* 2142899Seric ** Header structure. 2152899Seric ** This structure is used internally to store header items. 2162899Seric */ 217295Seric 2182899Seric struct header 2192899Seric { 2202899Seric char *h_field; /* the name of the field */ 2212899Seric char *h_value; /* the value of that field */ 2222899Seric struct header *h_link; /* the next header */ 2234149Seric u_short h_flags; /* status bits, see below */ 22410679Seric BITMAP h_mflags; /* m_flags bits needed */ 2252899Seric }; 226295Seric 2272899Seric typedef struct header HDR; 2282899Seric 229295Seric /* 2302899Seric ** Header information structure. 2312899Seric ** Defined in conf.c, this struct declares the header fields 2322899Seric ** that have some magic meaning. 2332899Seric */ 2342899Seric 2352899Seric struct hdrinfo 2362899Seric { 2372899Seric char *hi_field; /* the name of the field */ 2384149Seric u_short hi_flags; /* status bits, see below */ 2392899Seric }; 2402899Seric 2412899Seric extern struct hdrinfo HdrInfo[]; 2422899Seric 2432899Seric /* bits for h_flags and hi_flags */ 2443060Seric # define H_EOH 00001 /* this field terminates header */ 2455918Seric # define H_RCPT 00002 /* contains recipient addresses */ 2462899Seric # define H_DEFAULT 00004 /* if another value is found, drop this */ 24711416Seric # define H_RESENT 00010 /* this address is a "Resent-..." address */ 2483386Seric # define H_CHECK 00020 /* check h_mflags against m_flags */ 2493390Seric # define H_ACHECK 00040 /* ditto, but always (not just default) */ 2504149Seric # define H_FORCE 00100 /* force this field, even if default */ 2518061Seric # define H_TRACE 00200 /* this field contains trace information */ 2527761Seric # define H_FROM 00400 /* this is a from-type field */ 25324945Seric # define H_VALID 01000 /* this field has a validated value */ 25457359Seric # define H_RECEIPTTO 02000 /* this field has return receipt info */ 25557359Seric # define H_ERRORSTO 04000 /* this field has error address info */ 2566902Seric /* 25765870Seric ** Information about currently open connections to mailers, or to 25865870Seric ** hosts that we have looked up recently. 25965870Seric */ 26065870Seric 26165870Seric # define MCI struct mailer_con_info 26265870Seric 26365870Seric MCI 26465870Seric { 26565870Seric short mci_flags; /* flag bits, see below */ 26665870Seric short mci_errno; /* error number on last connection */ 26765870Seric short mci_herrno; /* h_errno from last DNS lookup */ 26865870Seric short mci_exitstat; /* exit status from last connection */ 26965870Seric short mci_state; /* SMTP state */ 27065870Seric long mci_maxsize; /* max size this server will accept */ 27165870Seric FILE *mci_in; /* input side of connection */ 27265870Seric FILE *mci_out; /* output side of connection */ 27365870Seric int mci_pid; /* process id of subordinate proc */ 27465870Seric char *mci_phase; /* SMTP phase string */ 27565870Seric struct mailer *mci_mailer; /* ptr to the mailer for this conn */ 27665870Seric char *mci_host; /* host name */ 27765870Seric time_t mci_lastuse; /* last usage time */ 27865870Seric }; 27965870Seric 28065870Seric 28165870Seric /* flag bits */ 28265870Seric #define MCIF_VALID 000001 /* this entry is valid */ 28365870Seric #define MCIF_TEMP 000002 /* don't cache this connection */ 28465870Seric #define MCIF_CACHED 000004 /* currently in open cache */ 28565870Seric #define MCIF_ESMTP 000010 /* this host speaks ESMTP */ 28665870Seric #define MCIF_EXPN 000020 /* EXPN command supported */ 28765870Seric #define MCIF_SIZE 000040 /* SIZE option supported */ 28865870Seric #define MCIF_8BITMIME 000100 /* BODY=8BITMIME supported */ 28965870Seric #define MCIF_7BIT 000200 /* strip this message to 7 bits */ 29065870Seric #define MCIF_MULTSTAT 000400 /* MAIL11V3: handles MULT status */ 29167546Seric #define MCIF_INHEADER 001000 /* currently outputing header */ 29267546Seric #define MCIF_CVT8TO7 002000 /* convert from 8 to 7 bits */ 29365870Seric 29465870Seric /* states */ 29565870Seric #define MCIS_CLOSED 0 /* no traffic on this connection */ 29665870Seric #define MCIS_OPENING 1 /* sending initial protocol */ 29765870Seric #define MCIS_OPEN 2 /* open, initial protocol sent */ 29865870Seric #define MCIS_ACTIVE 3 /* message being sent */ 29965870Seric #define MCIS_QUITING 4 /* running quit protocol */ 30065870Seric #define MCIS_SSD 5 /* service shutting down */ 30165870Seric #define MCIS_ERROR 6 /* I/O error on connection */ 30265870Seric /* 3036902Seric ** Envelope structure. 3046902Seric ** This structure defines the message itself. There is usually 3056902Seric ** only one of these -- for the message that we originally read 3066902Seric ** and which is our primary interest -- but other envelopes can 3076902Seric ** be generated during processing. For example, error messages 3086902Seric ** will have their own envelope. 3096902Seric */ 3102899Seric 31159153Seric # define ENVELOPE struct envelope 31259153Seric 31359153Seric ENVELOPE 3146902Seric { 3156987Seric HDR *e_header; /* head of header list */ 3166987Seric long e_msgpriority; /* adjusted priority of this message */ 3177859Seric time_t e_ctime; /* time message appeared in the queue */ 3186987Seric char *e_to; /* the target person */ 3198061Seric char *e_receiptto; /* return receipt address */ 3206987Seric ADDRESS e_from; /* the person it is from */ 32158703Seric char *e_sender; /* e_from.q_paddr w comments stripped */ 3228180Seric char **e_fromdomain; /* the domain part of the sender */ 3236987Seric ADDRESS *e_sendqueue; /* list of message recipients */ 3247044Seric ADDRESS *e_errorqueue; /* the queue for error responses */ 3256987Seric long e_msgsize; /* size of the message in bytes */ 32665088Seric long e_flags; /* flags, see below */ 32724943Seric int e_nrcpts; /* number of recipients */ 3286987Seric short e_class; /* msg class (priority, junk, etc.) */ 3299373Seric short e_hopcount; /* number of times processed */ 33057585Seric short e_nsent; /* number of sends since checkpoint */ 33158734Seric short e_sendmode; /* message send mode */ 33258734Seric short e_errormode; /* error return mode */ 33367546Seric int (*e_puthdr)__P((MCI *, HDR *, ENVELOPE *)); 33459153Seric /* function to put header of message */ 33565870Seric int (*e_putbody)__P((MCI *, ENVELOPE *, char *)); 33659153Seric /* function to put body of message */ 3376987Seric struct envelope *e_parent; /* the message this one encloses */ 3389336Seric struct envelope *e_sibling; /* the next envelope of interest */ 33959090Seric char *e_bodytype; /* type of message body */ 3406987Seric char *e_df; /* location of temp file */ 3419541Seric FILE *e_dfp; /* temporary file */ 3427810Seric char *e_id; /* code for this entry in queue */ 3439541Seric FILE *e_xfp; /* transcript file */ 34451920Seric FILE *e_lockfp; /* the lock file for this message */ 34510102Seric char *e_message; /* error message */ 34658913Seric char *e_statmsg; /* stat msg (changes per delivery) */ 34759710Seric char *e_msgboundary; /* MIME-style message part boundary */ 34864146Seric char *e_origrcpt; /* original recipient (one only) */ 34967616Seric time_t e_dtime; /* time of last delivery attempt */ 35067616Seric int e_ntries; /* number of delivery attempts */ 351*67687Seric dev_t e_dfdev; /* df file's device, for crash recov */ 35267616Seric ino_t e_dfino; /* df file's ino, for crash recovery */ 3536987Seric char *e_macro[128]; /* macro definitions */ 3546902Seric }; 3552899Seric 3569336Seric /* values for e_flags */ 35765088Seric #define EF_OLDSTYLE 0x0000001 /* use spaces (not commas) in hdrs */ 35865088Seric #define EF_INQUEUE 0x0000002 /* this message is fully queued */ 35967473Seric #define EF_NORETURN 0x0000004 /* don't return the message on error */ 36065088Seric #define EF_CLRQUEUE 0x0000008 /* disk copy is no longer needed */ 36165088Seric #define EF_SENDRECEIPT 0x0000010 /* send a return receipt */ 36265088Seric #define EF_FATALERRS 0x0000020 /* fatal errors occured */ 36365088Seric #define EF_KEEPQUEUE 0x0000040 /* keep queue files always */ 36465088Seric #define EF_RESPONSE 0x0000080 /* this is an error or return receipt */ 36565088Seric #define EF_RESENT 0x0000100 /* this message is being forwarded */ 36665088Seric #define EF_VRFYONLY 0x0000200 /* verify only (don't expand aliases) */ 36765088Seric #define EF_WARNING 0x0000400 /* warning message has been sent */ 36865088Seric #define EF_QUEUERUN 0x0000800 /* this envelope is from queue */ 36965088Seric #define EF_GLOBALERRS 0x0001000 /* treat errors as global */ 37065088Seric #define EF_PM_NOTIFY 0x0002000 /* send return mail to postmaster */ 37165088Seric #define EF_METOO 0x0004000 /* send to me too */ 37265088Seric #define EF_LOGSENDER 0x0008000 /* need to log the sender */ 37366780Seric #define EF_NORECEIPT 0x0010000 /* suppress all return-receipts */ 37467546Seric #define EF_HAS8BIT 0x0020000 /* at least one 8-bit char in body */ 37567598Seric #define EF_NL_NOT_EOL 0x0040000 /* don't accept raw NL as EOLine */ 37667598Seric #define EF_CRLF_NOT_EOL 0x0080000 /* don't accept CR-LF as EOLine */ 3779336Seric 3786902Seric EXTERN ENVELOPE *CurEnv; /* envelope currently being processed */ 3796902Seric /* 38024980Seric ** Message priority classes. 3815034Seric ** 38224980Seric ** The message class is read directly from the Priority: header 38324980Seric ** field in the message. 3846910Seric ** 38524980Seric ** CurEnv->e_msgpriority is the number of bytes in the message plus 38624980Seric ** the creation time (so that jobs ``tend'' to be ordered correctly), 38724980Seric ** adjusted by the message class, the number of recipients, and the 38824980Seric ** amount of time the message has been sitting around. This number 38924980Seric ** is used to order the queue. Higher values mean LOWER priority. 39012516Seric ** 39124980Seric ** Each priority class point is worth WkClassFact priority points; 39224980Seric ** each recipient is worth WkRecipFact priority points. Each time 39324980Seric ** we reprocess a message the priority is adjusted by WkTimeFact. 39424980Seric ** WkTimeFact should normally decrease the priority so that jobs 39524980Seric ** that have historically failed will be run later; thanks go to 39624980Seric ** Jay Lepreau at Utah for pointing out the error in my thinking. 39724980Seric ** 3986910Seric ** The "class" is this number, unadjusted by the age or size of 3996910Seric ** this message. Classes with negative representations will have 4006910Seric ** error messages thrown away if they are not local. 4014624Seric */ 4024624Seric 4038249Seric struct priority 4048249Seric { 4058249Seric char *pri_name; /* external name of priority */ 4068249Seric int pri_val; /* internal value for same */ 4078249Seric }; 4084624Seric 4098249Seric EXTERN struct priority Priorities[MAXPRIORITIES]; 4108249Seric EXTERN int NumPriorities; /* pointer into Priorities */ 4116902Seric /* 4123153Seric ** Rewrite rules. 4133153Seric */ 4142899Seric 4153153Seric struct rewrite 4163153Seric { 4173153Seric char **r_lhs; /* pattern match */ 4183153Seric char **r_rhs; /* substitution value */ 4193153Seric struct rewrite *r_next;/* next in chain */ 4203153Seric }; 4212899Seric 4228057Seric EXTERN struct rewrite *RewriteRules[MAXRWSETS]; 4233153Seric 4248057Seric /* 4258057Seric ** Special characters in rewriting rules. 4268057Seric ** These are used internally only. 4278057Seric ** The COND* rules are actually used in macros rather than in 4288057Seric ** rewriting rules, but are given here because they 4298057Seric ** cannot conflict. 4308057Seric */ 4313153Seric 4328057Seric /* left hand side items */ 43358050Seric # define MATCHZANY 0220 /* match zero or more tokens */ 43458050Seric # define MATCHANY 0221 /* match one or more tokens */ 43558050Seric # define MATCHONE 0222 /* match exactly one token */ 43658050Seric # define MATCHCLASS 0223 /* match one token in a class */ 43758050Seric # define MATCHNCLASS 0224 /* match anything not in class */ 43858050Seric # define MATCHREPL 0225 /* replacement on RHS for above */ 4398057Seric 4408057Seric /* right hand side items */ 44158050Seric # define CANONNET 0226 /* canonical net, next token */ 44258050Seric # define CANONHOST 0227 /* canonical host, next token */ 44358050Seric # define CANONUSER 0230 /* canonical user, next N tokens */ 44458050Seric # define CALLSUBR 0231 /* call another rewriting set */ 4453153Seric 4468057Seric /* conditionals in macros */ 44758050Seric # define CONDIF 0232 /* conditional if-then */ 44858050Seric # define CONDELSE 0233 /* conditional else */ 44958050Seric # define CONDFI 0234 /* conditional fi */ 45016151Seric 45116905Seric /* bracket characters for host name lookup */ 45258050Seric # define HOSTBEGIN 0235 /* hostname lookup begin */ 45358050Seric # define HOSTEND 0236 /* hostname lookup end */ 45416905Seric 45553751Seric /* bracket characters for generalized lookup */ 45658050Seric # define LOOKUPBEGIN 0205 /* generalized lookup begin */ 45758050Seric # define LOOKUPEND 0206 /* generalized lookup end */ 45853751Seric 45958050Seric /* macro substitution character */ 46058050Seric # define MACROEXPAND 0201 /* macro expansion */ 46159024Seric # define MACRODEXPAND 0202 /* deferred macro expansion */ 46251782Seric 46358829Seric /* to make the code clearer */ 46458829Seric # define MATCHZERO CANONHOST 46558829Seric 46651782Seric /* external <==> internal mapping table */ 46751782Seric struct metamac 46851782Seric { 46951782Seric char metaname; /* external code (after $) */ 47063854Seric u_char metaval; /* internal code (as above) */ 47151782Seric }; 4726902Seric /* 47359652Seric ** Name canonification short circuit. 47459652Seric ** 47559652Seric ** If the name server for a host is down, the process of trying to 47659652Seric ** canonify the name can hang. This is similar to (but alas, not 47759652Seric ** identical to) looking up the name for delivery. This stab type 47859652Seric ** caches the result of the name server lookup so we don't hang 47959652Seric ** multiple times. 48059652Seric */ 48159652Seric 48259652Seric #define NAMECANON struct _namecanon 48359652Seric 48459652Seric NAMECANON 48559652Seric { 48659652Seric short nc_errno; /* cached errno */ 48759652Seric short nc_herrno; /* cached h_errno */ 48859652Seric short nc_stat; /* cached exit status code */ 48959653Seric short nc_flags; /* flag bits */ 49059652Seric char *nc_cname; /* the canonical name */ 49159652Seric }; 49259653Seric 49359653Seric /* values for nc_flags */ 49459653Seric #define NCF_VALID 0x0001 /* entry valid */ 49559652Seric /* 49653751Seric ** Mapping functions 49753751Seric ** 49853751Seric ** These allow arbitrary mappings in the config file. The idea 49953751Seric ** (albeit not the implementation) comes from IDA sendmail. 50053751Seric */ 50153751Seric 50253751Seric # define MAPCLASS struct _mapclass 50359153Seric # define MAP struct _map 50453751Seric 50553751Seric 50653751Seric /* 50753751Seric ** An actual map. 50853751Seric */ 50953751Seric 51053751Seric MAP 51153751Seric { 51253751Seric MAPCLASS *map_class; /* the class of this map */ 51360089Seric char *map_mname; /* name of this map */ 51460207Seric int map_mflags; /* flags, see below */ 51553751Seric char *map_file; /* the (nominal) filename */ 51663970Seric ARBPTR_T map_db1; /* the open database ptr */ 51763970Seric ARBPTR_T map_db2; /* an "extra" database pointer */ 51856836Seric char *map_app; /* to append to successful matches */ 51957208Seric char *map_domain; /* the (nominal) NIS domain */ 52058962Seric char *map_rebuild; /* program to run to do auto-rebuild */ 52164284Seric time_t map_mtime; /* last database modification time */ 52253751Seric }; 52353751Seric 52453751Seric /* bit values for map_flags */ 52560089Seric # define MF_VALID 0x0001 /* this entry is valid */ 52660089Seric # define MF_INCLNULL 0x0002 /* include null byte in key */ 52760089Seric # define MF_OPTIONAL 0x0004 /* don't complain if map not found */ 52860089Seric # define MF_NOFOLDCASE 0x0008 /* don't fold case in keys */ 52960089Seric # define MF_MATCHONLY 0x0010 /* don't use the map value */ 53060089Seric # define MF_OPEN 0x0020 /* this entry is open */ 53160089Seric # define MF_WRITABLE 0x0040 /* open for writing */ 53260207Seric # define MF_ALIAS 0x0080 /* this is an alias file */ 53363753Seric # define MF_TRY0NULL 0x0100 /* try with no null byte */ 53463753Seric # define MF_TRY1NULL 0x0200 /* try with the null byte */ 53564384Seric # define MF_LOCKED 0x0400 /* this map is currently locked */ 53664646Seric # define MF_ALIASWAIT 0x0800 /* alias map in aliaswait state */ 53760089Seric # define MF_IMPL_HASH 0x1000 /* implicit: underlying hash database */ 53860089Seric # define MF_IMPL_NDBM 0x2000 /* implicit: underlying NDBM database */ 53967444Seric # define MF_UNSAFEDB 0x4000 /* this map is world writable */ 54059153Seric 54159153Seric 54259153Seric /* 54359153Seric ** The class of a map -- essentially the functions to call 54459153Seric */ 54559153Seric 54659153Seric MAPCLASS 54759153Seric { 54860089Seric char *map_cname; /* name of this map class */ 54960089Seric char *map_ext; /* extension for database file */ 55060207Seric short map_cflags; /* flag bits, see below */ 55160089Seric bool (*map_parse)__P((MAP *, char *)); 55260089Seric /* argument parsing function */ 55360089Seric char *(*map_lookup)__P((MAP *, char *, char **, int *)); 55459153Seric /* lookup function */ 55560089Seric void (*map_store)__P((MAP *, char *, char *)); 55660089Seric /* store function */ 55760089Seric bool (*map_open)__P((MAP *, int)); 55860089Seric /* open function */ 55960089Seric void (*map_close)__P((MAP *)); 56060089Seric /* close function */ 56159153Seric }; 56260207Seric 56360207Seric /* bit values for map_cflags */ 56460207Seric #define MCF_ALIASOK 0x0001 /* can be used for aliases */ 56560207Seric #define MCF_ALIASONLY 0x0002 /* usable only for aliases */ 56660207Seric #define MCF_REBUILDABLE 0x0004 /* can rebuild alias files */ 56753751Seric /* 5684056Seric ** Symbol table definitions 5694056Seric */ 5703153Seric 5714056Seric struct symtab 5724056Seric { 5734056Seric char *s_name; /* name to be entered */ 5744100Seric char s_type; /* general type (see below) */ 5754056Seric struct symtab *s_next; /* pointer to next in chain */ 5764100Seric union 5774100Seric { 57824943Seric BITMAP sv_class; /* bit-map of word classes */ 57924943Seric ADDRESS *sv_addr; /* pointer to address header */ 58024943Seric MAILER *sv_mailer; /* pointer to mailer */ 58124943Seric char *sv_alias; /* alias */ 58260207Seric MAPCLASS sv_mapclass; /* mapping function class */ 58353751Seric MAP sv_map; /* mapping function */ 58457443Seric char *sv_hostsig; /* host signature */ 58554967Seric MCI sv_mci; /* mailer connection info */ 58659652Seric NAMECANON sv_namecanon; /* canonical name cache */ 5874100Seric } s_value; 5884056Seric }; 5894056Seric 5904056Seric typedef struct symtab STAB; 5914056Seric 5924100Seric /* symbol types */ 5934100Seric # define ST_UNDEF 0 /* undefined type */ 5944100Seric # define ST_CLASS 1 /* class map */ 5954100Seric # define ST_ADDRESS 2 /* an address in parsed format */ 5964100Seric # define ST_MAILER 3 /* a mailer header */ 5974100Seric # define ST_ALIAS 4 /* an alias */ 59853751Seric # define ST_MAPCLASS 5 /* mapping function class */ 59953751Seric # define ST_MAP 6 /* mapping function */ 60057443Seric # define ST_HOSTSIG 7 /* host signature */ 60159652Seric # define ST_NAMECANON 8 /* cached canonical name */ 60254967Seric # define ST_MCI 16 /* mailer connection info (offset) */ 6034100Seric 6044100Seric # define s_class s_value.sv_class 6055976Seric # define s_address s_value.sv_addr 6064100Seric # define s_mailer s_value.sv_mailer 6074100Seric # define s_alias s_value.sv_alias 60853741Seric # define s_mci s_value.sv_mci 60953751Seric # define s_mapclass s_value.sv_mapclass 61057443Seric # define s_hostsig s_value.sv_hostsig 61153751Seric # define s_map s_value.sv_map 61259652Seric # define s_namecanon s_value.sv_namecanon 6134100Seric 61460494Seric extern STAB *stab __P((char *, int, int)); 61560523Seric extern void stabapply __P((void (*)(STAB *, int), int)); 6164056Seric 6174056Seric /* opcodes to stab */ 6184056Seric # define ST_FIND 0 /* find entry */ 6194056Seric # define ST_ENTER 1 /* enter if not there */ 6206902Seric /* 6217684Seric ** STRUCT EVENT -- event queue. 6227684Seric ** 6237684Seric ** Maintained in sorted order. 6247931Seric ** 6257931Seric ** We store the pid of the process that set this event to insure 6267931Seric ** that when we fork we will not take events intended for the parent. 6277684Seric */ 6287684Seric 6297684Seric struct event 6307684Seric { 6317684Seric time_t ev_time; /* time of the function call */ 63259153Seric int (*ev_func)__P((int)); 63359153Seric /* function to call */ 6347684Seric int ev_arg; /* argument to ev_func */ 6357931Seric int ev_pid; /* pid that set this event */ 6367684Seric struct event *ev_link; /* link to next item */ 6377684Seric }; 6387684Seric 6397684Seric typedef struct event EVENT; 6407684Seric 6417684Seric EXTERN EVENT *EventQueue; /* head of event queue */ 6427684Seric /* 64367546Seric ** Operation, send, error, and MIME modes 6449278Seric ** 6459278Seric ** The operation mode describes the basic operation of sendmail. 6469278Seric ** This can be set from the command line, and is "send mail" by 6479278Seric ** default. 6489278Seric ** 6499278Seric ** The send mode tells how to send mail. It can be set in the 6509278Seric ** configuration file. It's setting determines how quickly the 6519278Seric ** mail will be delivered versus the load on your system. If the 6529278Seric ** -v (verbose) flag is given, it will be forced to SM_DELIVER 6539278Seric ** mode. 6549278Seric ** 6559373Seric ** The error mode tells how to return errors. 6566997Seric */ 6576997Seric 6589278Seric EXTERN char OpMode; /* operation mode, see below */ 6596997Seric 6609278Seric #define MD_DELIVER 'm' /* be a mail sender */ 6619278Seric #define MD_SMTP 's' /* run SMTP on standard input */ 66265979Seric #define MD_ARPAFTP 'a' /* obsolete ARPANET mode (Grey Book) */ 6636997Seric #define MD_DAEMON 'd' /* run as a daemon */ 6646997Seric #define MD_VERIFY 'v' /* verify: don't collect or deliver */ 6658334Seric #define MD_TEST 't' /* test mode: resolve addrs only */ 6669144Seric #define MD_INITALIAS 'i' /* initialize alias database */ 6679144Seric #define MD_PRINT 'p' /* print the queue */ 6689144Seric #define MD_FREEZE 'z' /* freeze the configuration file */ 6696997Seric 6709278Seric 67158734Seric /* values for e_sendmode -- send modes */ 6729278Seric #define SM_DELIVER 'i' /* interactive delivery */ 6739278Seric #define SM_QUICKD 'j' /* deliver w/o queueing */ 6749278Seric #define SM_FORK 'b' /* deliver in background */ 6759278Seric #define SM_QUEUE 'q' /* queue, don't deliver */ 6769278Seric #define SM_VERIFY 'v' /* verify only (used internally) */ 6779373Seric 67814871Seric /* used only as a parameter to sendall */ 67914871Seric #define SM_DEFAULT '\0' /* unspecified, use SendMode */ 6809373Seric 68114871Seric 68258734Seric /* values for e_errormode -- error handling modes */ 6839373Seric #define EM_PRINT 'p' /* print errors */ 6849373Seric #define EM_MAIL 'm' /* mail back errors */ 6859373Seric #define EM_WRITE 'w' /* write back errors */ 6869373Seric #define EM_BERKNET 'e' /* special berknet processing */ 6879373Seric #define EM_QUIET 'q' /* don't print messages (stat only) */ 68867546Seric 68967546Seric 69067546Seric /* MIME processing mode */ 69167546Seric EXTERN int MimeMode; 69267546Seric 69367546Seric /* bit values for MimeMode */ 69467546Seric #define MM_CVTMIME 0x0001 /* convert 8 to 7 bit MIME */ 69567546Seric #define MM_PASS8BIT 0x0002 /* just send 8 bit data blind */ 69667546Seric #define MM_MIME8BIT 0x0004 /* convert 8-bit data to MIME */ 69759162Seric /* 69859162Seric ** Additional definitions 69959162Seric */ 70025525Smiriam 70159162Seric 70259162Seric /* 70359162Seric ** Privacy flags 70459162Seric ** These are bit values for the PrivacyFlags word. 70559162Seric */ 70659162Seric 70758082Seric #define PRIV_PUBLIC 0 /* what have I got to hide? */ 70858082Seric #define PRIV_NEEDMAILHELO 00001 /* insist on HELO for MAIL, at least */ 70958082Seric #define PRIV_NEEDEXPNHELO 00002 /* insist on HELO for EXPN */ 71058082Seric #define PRIV_NEEDVRFYHELO 00004 /* insist on HELO for VRFY */ 71158082Seric #define PRIV_NOEXPN 00010 /* disallow EXPN command entirely */ 71258082Seric #define PRIV_NOVRFY 00020 /* disallow VRFY command entirely */ 71358789Seric #define PRIV_AUTHWARNINGS 00040 /* flag possible authorization probs */ 71466781Seric #define PRIV_NORECEIPTS 00100 /* disallow return receipts */ 71564331Seric #define PRIV_RESTRICTMAILQ 01000 /* restrict mailq command */ 71664331Seric #define PRIV_RESTRICTQRUN 02000 /* restrict queue run */ 71758249Seric #define PRIV_GOAWAY 00777 /* don't give no info, anyway, anyhow */ 71858082Seric 71958082Seric /* struct defining such things */ 72058082Seric struct prival 72158082Seric { 72258082Seric char *pv_name; /* name of privacy flag */ 72358082Seric int pv_flag; /* numeric level */ 72458082Seric }; 72558755Seric 72659162Seric 72758755Seric /* 72864284Seric ** Flags passed to remotename, parseaddr, allocaddr, and buildaddr. 72959162Seric */ 73059162Seric 73159162Seric #define RF_SENDERADDR 0001 /* this is a sender address */ 73259162Seric #define RF_HEADERADDR 0002 /* this is a header address */ 73359162Seric #define RF_CANONICAL 0004 /* strip comment information */ 73459162Seric #define RF_ADDDOMAIN 0010 /* OK to do domain extension */ 73564284Seric #define RF_COPYPARSE 0020 /* copy parsed user & host */ 73664284Seric #define RF_COPYPADDR 0040 /* copy print address */ 73764284Seric #define RF_COPYALL (RF_COPYPARSE|RF_COPYPADDR) 73864284Seric #define RF_COPYNONE 0 73959162Seric 74064944Seric 74159162Seric /* 74264944Seric ** Flags passed to safefile. 74364944Seric */ 74464944Seric 74565063Seric #define SFF_ANYFILE 0 /* no special restrictions */ 74665063Seric #define SFF_MUSTOWN 0x0001 /* user must own this file */ 74765063Seric #define SFF_NOSLINK 0x0002 /* file cannot be a symbolic link */ 74865134Seric #define SFF_ROOTOK 0x0004 /* ok for root to own this file */ 74964944Seric 75064944Seric 75164944Seric /* 75258755Seric ** Regular UNIX sockaddrs are too small to handle ISO addresses, so 75358755Seric ** we are forced to declare a supertype here. 75458755Seric */ 75558755Seric 75658778Seric union bigsockaddr 75758755Seric { 75858778Seric struct sockaddr sa; /* general version */ 75964814Seric #ifdef NETUNIX 76064758Seric struct sockaddr_un sunix; /* UNIX family */ 76164814Seric #endif 76258778Seric #ifdef NETINET 76358778Seric struct sockaddr_in sin; /* INET family */ 76458778Seric #endif 76558778Seric #ifdef NETISO 76658778Seric struct sockaddr_iso siso; /* ISO family */ 76758778Seric #endif 76858871Seric #ifdef NETNS 76958871Seric struct sockaddr_ns sns; /* XNS family */ 77058871Seric #endif 77158871Seric #ifdef NETX25 77258871Seric struct sockaddr_x25 sx25; /* X.25 family */ 77358871Seric #endif 77458755Seric }; 77558755Seric 77658778Seric #define SOCKADDR union bigsockaddr 7776997Seric /* 778295Seric ** Global variables. 779295Seric */ 780295Seric 7814371Seric EXTERN bool FromFlag; /* if set, "From" person is explicit */ 7824371Seric EXTERN bool MeToo; /* send to the sender also */ 7834371Seric EXTERN bool IgnrDot; /* don't let dot end messages */ 7844371Seric EXTERN bool SaveFrom; /* save leading "From" lines */ 7854371Seric EXTERN bool Verbose; /* set if blow-by-blow desired */ 7864371Seric EXTERN bool GrabTo; /* if set, get recipients from msg */ 7874553Seric EXTERN bool SuprErrs; /* set if we are suppressing errors */ 7884711Seric EXTERN bool HoldErrs; /* only output errors to transcript */ 7895904Seric EXTERN bool NoConnect; /* don't connect to non-local mailers */ 7908268Seric EXTERN bool SuperSafe; /* be extra careful, even if expensive */ 79124943Seric EXTERN bool ForkQueueRuns; /* fork for each job when running the queue */ 7929144Seric EXTERN bool AutoRebuild; /* auto-rebuild the alias database as needed */ 79325818Seric EXTERN bool CheckAliases; /* parse addresses during newaliases */ 79459668Seric EXTERN bool NoAlias; /* suppress aliasing */ 79535651Seric EXTERN bool UseNameServer; /* use internet domain name server */ 79667546Seric EXTERN bool SevenBitInput; /* force 7-bit data on input */ 79767546Seric EXTERN bool HasEightBits; /* has at least one eight bit input byte */ 79864794Seric EXTERN time_t SafeAlias; /* interval to wait until @:@ in alias file */ 7994553Seric EXTERN FILE *InChannel; /* input connection */ 8004553Seric EXTERN FILE *OutChannel; /* output connection */ 80155370Seric EXTERN uid_t RealUid; /* when Daemon, real uid of caller */ 80255370Seric EXTERN gid_t RealGid; /* when Daemon, real gid of caller */ 80355370Seric EXTERN uid_t DefUid; /* default uid to run as */ 80455370Seric EXTERN gid_t DefGid; /* default gid to run as */ 80540973Sbostic EXTERN char *DefUser; /* default user to run as (from DefUid) */ 8064371Seric EXTERN int OldUmask; /* umask when sendmail starts up */ 8076049Seric EXTERN int Errors; /* set if errors (local to single pass) */ 8084371Seric EXTERN int ExitStat; /* exit status code */ 8094553Seric EXTERN int AliasLevel; /* depth of aliasing */ 8108057Seric EXTERN int LineNumber; /* line number in current input */ 8118268Seric EXTERN int LogLevel; /* level of logging to perform */ 8129045Seric EXTERN int FileMode; /* mode on files */ 81324943Seric EXTERN int QueueLA; /* load average starting forced queueing */ 81424943Seric EXTERN int RefuseLA; /* load average refusing connections are */ 81551920Seric EXTERN int CurrentLA; /* current load average */ 81657434Seric EXTERN long QueueFactor; /* slope of queue function */ 8174624Seric EXTERN time_t QueueIntvl; /* intervals between running the queue */ 8188268Seric EXTERN char *HelpFile; /* location of SMTP help file */ 81955370Seric EXTERN char *ErrMsgFile; /* file to prepend to all error messages */ 8208268Seric EXTERN char *StatFile; /* location of statistics summary */ 8218268Seric EXTERN char *QueueDir; /* location of queue directory */ 8229373Seric EXTERN char *FileName; /* name to print on error messages */ 82324943Seric EXTERN char *SmtpPhase; /* current phase in SMTP processing */ 82425050Seric EXTERN char *MyHostName; /* name of this host for SMTP messages */ 82524943Seric EXTERN char *RealHostName; /* name of host we are talking to */ 82658755Seric EXTERN SOCKADDR RealHostAddr; /* address of host we are talking to */ 82725050Seric EXTERN char *CurHostName; /* current host we are dealing with */ 8288268Seric EXTERN jmp_buf TopFrame; /* branch-to-top-of-loop-on-error frame */ 8298268Seric EXTERN bool QuickAbort; /* .... but only if we want a quick abort */ 83051951Seric EXTERN bool LogUsrErrs; /* syslog user errors (e.g., SMTP RCPT cmd) */ 83159715Seric EXTERN bool SendMIMEErrors; /* send error messages in MIME format */ 83259715Seric EXTERN bool MatchGecos; /* look for user names in gecos field */ 83361086Seric EXTERN bool UseErrorsTo; /* use Errors-To: header (back compat) */ 83463839Seric EXTERN bool TryNullMXList; /* if we are the best MX, try host directly */ 83564718Seric EXTERN bool InChild; /* true if running in an SMTP subprocess */ 83666016Seric EXTERN bool DisConnected; /* running with OutChannel redirected to xf */ 83759715Seric EXTERN char SpaceSub; /* substitution for <lwsp> */ 83858082Seric EXTERN int PrivacyFlags; /* privacy flags */ 83964556Seric EXTERN char *ConfFile; /* location of configuration file [conf.c] */ 84058082Seric extern char *PidFile; /* location of proc id file [conf.c] */ 84124943Seric extern ADDRESS NullAddress; /* a null (template) address [main.c] */ 84257434Seric EXTERN long WkClassFact; /* multiplier for message class -> priority */ 84357434Seric EXTERN long WkRecipFact; /* multiplier for # of recipients -> priority */ 84457434Seric EXTERN long WkTimeFact; /* priority offset each time this job is run */ 84559715Seric EXTERN char *UdbSpec; /* user database source spec */ 84659715Seric EXTERN int MaxHopCount; /* max # of hops until bounce */ 84759715Seric EXTERN int ConfigLevel; /* config file level */ 84859715Seric EXTERN char *TimeZoneSpec; /* override time zone specification */ 84959715Seric EXTERN char *ForwardPath; /* path to search for .forward files */ 85059715Seric EXTERN long MinBlocksFree; /* min # of blocks free on queue fs */ 85159715Seric EXTERN char *FallBackMX; /* fall back MX host */ 85259715Seric EXTERN long MaxMessageSize; /* advertised max size we will accept */ 85324943Seric EXTERN char *PostMasterCopy; /* address to get errs cc's */ 85447285Seric EXTERN int CheckpointInterval; /* queue file checkpoint interval */ 85558144Seric EXTERN bool DontPruneRoutes; /* don't prune source routes */ 85667610Seric EXTERN bool BrokenSmtpPeers; /* peers can't handle 2-line greeting */ 85767609Seric EXTERN bool SortQueueByHost; /* order queue by host name first */ 85859262Seric EXTERN int MaxMciCache; /* maximum entries in MCI cache */ 85954967Seric EXTERN time_t MciCacheTimeout; /* maximum idle time on connections */ 86058318Seric EXTERN char *QueueLimitRecipient; /* limit queue runs to this recipient */ 86158318Seric EXTERN char *QueueLimitSender; /* limit queue runs to this sender */ 86258318Seric EXTERN char *QueueLimitId; /* limit queue runs to this id */ 86363753Seric EXTERN FILE *TrafficLogFile; /* file in which to log all traffic */ 86464814Seric extern int errno; 86558112Seric 86658112Seric 86758112Seric /* 86858112Seric ** Timeouts 86958112Seric ** 87058112Seric ** Indicated values are the MINIMUM per RFC 1123 section 5.3.2. 87158112Seric */ 87258112Seric 87358112Seric EXTERN struct 87458112Seric { 87564255Seric /* RFC 1123-specified timeouts [minimum value] */ 87658112Seric time_t to_initial; /* initial greeting timeout [5m] */ 87758112Seric time_t to_mail; /* MAIL command [5m] */ 87858112Seric time_t to_rcpt; /* RCPT command [5m] */ 87958112Seric time_t to_datainit; /* DATA initiation [2m] */ 88058112Seric time_t to_datablock; /* DATA block [3m] */ 88158112Seric time_t to_datafinal; /* DATA completion [10m] */ 88258112Seric time_t to_nextcommand; /* next command [5m] */ 88358112Seric /* following timeouts are not mentioned in RFC 1123 */ 88458112Seric time_t to_rset; /* RSET command */ 88558112Seric time_t to_helo; /* HELO command */ 88658112Seric time_t to_quit; /* QUIT command */ 88758112Seric time_t to_miscshort; /* misc short commands (NOOP, VERB, etc) */ 88864255Seric time_t to_ident; /* IDENT protocol requests */ 88958737Seric /* following are per message */ 89058737Seric time_t to_q_return; /* queue return timeout */ 89158737Seric time_t to_q_warning; /* queue warning timeout */ 89258112Seric } TimeOuts; 89358112Seric 89458112Seric 89558112Seric /* 8967674Seric ** Trace information 8977674Seric */ 898295Seric 8997674Seric /* trace vector and macros for debugging flags */ 9007674Seric EXTERN u_char tTdvect[100]; 9017674Seric # define tTd(flag, level) (tTdvect[flag] >= level) 9027674Seric # define tTdlevel(flag) (tTdvect[flag]) 9037674Seric /* 9047674Seric ** Miscellaneous information. 9057674Seric */ 906295Seric 907295Seric 90810213Seric 90910213Seric /* 91010213Seric ** Some in-line functions 91110213Seric */ 91210213Seric 91310213Seric /* set exit status */ 91411426Seric #define setstat(s) { \ 91511426Seric if (ExitStat == EX_OK || ExitStat == EX_TEMPFAIL) \ 91611426Seric ExitStat = s; \ 91711426Seric } 9184085Seric 91910213Seric /* make a copy of a string */ 92011426Seric #define newstr(s) strcpy(xalloc(strlen(s) + 1), s) 9214085Seric 92224943Seric #define STRUCTCOPY(s, d) d = s 92310213Seric 92424943Seric 92510213Seric /* 92610213Seric ** Declarations of useful functions 92710213Seric */ 92810213Seric 92960089Seric extern ADDRESS *parseaddr __P((char *, ADDRESS *, int, int, char **, ENVELOPE *)); 93060089Seric extern char *xalloc __P((int)); 93160089Seric extern bool sameaddr __P((ADDRESS *, ADDRESS *)); 93260089Seric extern FILE *dfopen __P((char *, int, int)); 93360089Seric extern EVENT *setevent __P((time_t, int(*)(), int)); 93461088Seric extern char *sfgets __P((char *, int, FILE *, time_t, char *)); 93560089Seric extern char *queuename __P((ENVELOPE *, int)); 93660089Seric extern time_t curtime __P(()); 93760089Seric extern bool transienterror __P((int)); 93860089Seric extern const char *errstring __P((int)); 93960494Seric extern void expand __P((char *, char *, char *, ENVELOPE *)); 94060574Seric extern void define __P((int, char *, ENVELOPE *)); 94160574Seric extern char *macvalue __P((int, ENVELOPE *)); 94265065Seric extern char **prescan __P((char *, int, char[], int, char **)); 94365073Seric extern int rewrite __P((char **, int, int, ENVELOPE *)); 94460494Seric extern char *fgetfolded __P((char *, int, FILE *)); 94560494Seric extern ADDRESS *recipient __P((ADDRESS *, ADDRESS **, ENVELOPE *)); 94660494Seric extern ENVELOPE *newenvelope __P((ENVELOPE *, ENVELOPE *)); 94760494Seric extern void dropenvelope __P((ENVELOPE *)); 94860574Seric extern void clearenvelope __P((ENVELOPE *, int)); 94960494Seric extern char *username __P(()); 95060494Seric extern MCI *mci_get __P((char *, MAILER *)); 95160574Seric extern char *pintvl __P((time_t, int)); 95260494Seric extern char *map_rewrite __P((MAP *, char *, int, char **)); 95360494Seric extern ADDRESS *getctladdr __P((ADDRESS *)); 95460494Seric extern char *anynet_ntoa __P((SOCKADDR *)); 95560494Seric extern char *remotename __P((char *, MAILER *, int, int *, ENVELOPE *)); 95660494Seric extern bool shouldqueue __P((long, time_t)); 95764335Seric extern bool lockfile __P((int, char *, char *, int)); 95860494Seric extern char *hostsignature __P((MAILER *, char *, ENVELOPE *)); 95960494Seric extern void openxscript __P((ENVELOPE *)); 96060494Seric extern void closexscript __P((ENVELOPE *)); 96164561Seric extern sigfunc_t setsignal __P((int, sigfunc_t)); 96265015Seric extern char *shortenstring __P((char *, int)); 96365211Seric extern bool usershellok __P((char *)); 96465870Seric extern void commaize __P((HDR *, char *, int, MCI *, ENVELOPE *)); 96567683Seric extern char *hvalue __P((char *, HDR *)); 96658789Seric 96758823Seric /* ellipsis is a different case though */ 96858823Seric #ifdef __STDC__ 96960093Seric extern void auth_warning(ENVELOPE *, const char *, ...); 97060093Seric extern void syserr(const char *, ...); 97160093Seric extern void usrerr(const char *, ...); 97260093Seric extern void message(const char *, ...); 97360093Seric extern void nmessage(const char *, ...); 97458823Seric #else 97560089Seric extern void auth_warning(); 97660089Seric extern void syserr(); 97760089Seric extern void usrerr(); 97860089Seric extern void message(); 97960089Seric extern void nmessage(); 98058823Seric #endif 981