4.4BSD snapshot (revision 8.1)
[unix-history] / usr / src / usr.sbin / sendmail / src / conf.h
CommitLineData
5a739feb 1/*
dc45ba8c 2 * Copyright (c) 1983 Eric P. Allman
31de980b
KB
3 * Copyright (c) 1988, 1993
4 * The Regents of the University of California. All rights reserved.
bee79b64 5 *
417f7a11 6 * %sccs.include.redist.c%
bee79b64 7 *
ba6514e2 8 * @(#)conf.h 8.5 (Berkeley) %G%
bee79b64 9 */
aeb2545d
DF
10
11/*
12** CONF.H -- All user-configurable parameters for sendmail
5a739feb
EA
13*/
14
f43b04ce 15# include <sys/param.h>
46300693 16# include <sys/stat.h>
f8a31c8e 17# include <fcntl.h>
f43b04ce 18
ba6514e2 19/**********************************************************************
5a739feb
EA
20** Table sizes, etc....
21** There shouldn't be much need to change these....
ba6514e2 22**********************************************************************/
5a739feb 23
d36f8e5c 24# define MAXLINE 2048 /* max line length */
f0a960f1 25# define MAXNAME 256 /* max length of a name */
5a739feb 26# define MAXPV 40 /* max # of parms to mailers */
d36f8e5c 27# define MAXATOM 200 /* max atoms per address */
5a739feb 28# define MAXMAILERS 25 /* maximum mailers known to system */
8583ab39 29# define MAXRWSETS 100 /* max # of sets of rewriting rules */
5a739feb 30# define MAXPRIORITIES 25 /* max values for Precedence: field */
8583ab39 31# define MAXMXHOSTS 20 /* max # of MX records */
8657d05f 32# define SMTPLINELIM 990 /* maximum SMTP line length */
f43b04ce
EA
33# define MAXKEY 128 /* maximum size of a database key */
34# define MEMCHUNKSIZE 1024 /* chunk size for memory allocation */
b0b636d1 35# define MAXUSERENVIRON 100 /* max envars saved, must be >= 3 */
8e571338 36# define MAXIPADDR 16 /* max # of IP addrs for this host */
9f7134c8 37# define MAXALIASDB 12 /* max # of alias databases */
d36f8e5c 38# define PSBUFSIZE (MAXLINE + MAXATOM) /* size of prescan buffer */
8583ab39
EA
39
40# ifndef QUEUESIZE
41# define QUEUESIZE 1000 /* max # of jobs per queue run */
42# endif
43
ba6514e2 44/**********************************************************************
5a739feb 45** Compilation options.
9bcdff70
EA
46**
47** #define these if they are available; comment them out otherwise.
ba6514e2 48**********************************************************************/
5a739feb 49
9bcdff70 50# define LOG 1 /* enable logging */
9bcdff70 51# define UGLYUUCP 1 /* output ugly UUCP From lines */
3356c77c 52# define NETINET 1 /* include internet support */
9bcdff70 53# define SETPROCTITLE 1 /* munge argv to display current status */
35af2f06 54# define NAMED_BIND 1 /* use Berkeley Internet Domain Server */
7f0fd60b 55# define MATCHGECOS 1 /* match user names from gecos field */
8e5c6745 56# define XDEBUG 1 /* enable extended debugging */
d25bb424 57
273562d8
EA
58# ifdef NEWDB
59# define USERDB 1 /* look in user database (requires NEWDB) */
5a4c03c6
EA
60# endif
61
ba6514e2 62/**********************************************************************
e6245c7e
EA
63** Operating system configuration.
64**
65** Unless you are porting to a new OS, you shouldn't have to
66** change these.
ba6514e2 67**********************************************************************/
5a4c03c6 68
fd57f063 69/* general "standard C" defines */
8e5c6745
EA
70#ifdef __STDC__
71# define HASSETVBUF 1 /* yes, we have setvbuf in libc */
72#endif
73
fd57f063
EA
74/* general POSIX defines */
75#ifdef _POSIX_VERSION
76# define HASSETSID 1 /* has setsid(2) call */
77#endif
78
79/*
80** Per-Operating System defines
81*/
82
ba6514e2
EA
83/*
84** HP-UX -- tested for 8.07
85*/
86
8a47b280 87# ifdef __hpux
fd57f063 88# define SYSTEM5 1 /* include all the System V defines */
45f49b73 89# define UNSETENV 1 /* need unsetenv(3) support */
ba6514e2
EA
90# define HASSETREUID 1 /* have setreuid(2) call */
91# define setreuid(r, e) setresuid(r, e, -1)
fd57f063
EA
92# ifndef __STDC__
93# define HASSETVBUF 1 /* we have setvbuf in libc (but not __STDC__) */
94# endif
273562d8
EA
95# endif
96
ba6514e2
EA
97/*
98** IBM AIX 3.x -- actually tested for 3.2.3
99*/
100
a419d027 101# ifdef _AIX3
9114f86c
EA
102# define LOCKF 1 /* use System V lockf instead of flock */
103# define FORK fork /* no vfork primitive available */
45f49b73 104# define UNSETENV 1 /* need unsetenv(3) support */
8e5c6745
EA
105# define SYS5TZ 1 /* use System V style timezones */
106# endif
107
ba6514e2
EA
108/*
109** Silicon Graphics IRIX
110**
111** I haven't tested this yet myself.
112*/
113
8e5c6745
EA
114# ifdef IRIX
115# define FORK fork /* no vfork primitive available */
116# define UNSETENV 1 /* need unsetenv(3) support */
117# define setpgrp BSDsetpgrp
9114f86c
EA
118# endif
119
ba6514e2
EA
120
121/*
122** SunOS
123*/
124
45f49b73 125#if defined(sun) && !defined(BSD)
fd57f063 126
45f49b73 127# define UNSETENV 1 /* need unsetenv(3) support */
45f49b73 128
7b3820ed 129# ifdef SOLARIS
ba6514e2 130 /* Solaris 2.x (a.k.a. SunOS 5.x) */
7b3820ed 131# define LOCKF 1 /* use System V lockf instead of flock */
7b3820ed 132# define HASUSTAT 1 /* has the ustat(2) syscall */
fd57f063
EA
133# define bcopy(s, d, l) (memmove((d), (s), (l)))
134# define bzero(d, l) (memset((d), '\0', (l)))
135# define bcmp(s, d, l) (memcmp((s), (d), (l)))
136# include <sys/time.h>
137
7b3820ed 138# else
fd57f063 139 /* SunOS 4.1.x */
7b3820ed 140# define HASSTATFS 1 /* has the statfs(2) syscall */
ba6514e2 141# define HASSETREUID 1 /* have setreuid(2) call */
45f49b73 142# include <vfork.h>
45f49b73 143
fd57f063 144# endif
45f49b73
EA
145#endif
146
ba6514e2
EA
147/*
148** Digital Ultrix 4.2A or 4.3
149*/
150
45f49b73
EA
151#ifdef ultrix
152# define HASSTATFS 1 /* has the statfs(2) syscall */
ba6514e2 153# define HASSETREUID 1 /* have setreuid(2) call */
e6245c7e
EA
154#endif
155
ba6514e2
EA
156/*
157** OSF/1 (tested on Alpha)
158*/
159
fd57f063 160#ifdef __osf__
ba6514e2 161# define HASSETREUID 1 /* have setreuid(2) call */
fd57f063 162# define seteuid(uid) setreuid(-1, uid)
6070681d
EA
163#endif
164
ba6514e2
EA
165/*
166** NeXTstep
167*/
168
8e5c6745
EA
169#ifdef __NeXT__
170# define sleep sleepX
171# define UNSETENV 1 /* need unsetenv(3) support */
8c5949d2
EA
172#endif
173
ba6514e2
EA
174/*
175** BSD
176*/
177
fd57f063
EA
178#ifdef BSD
179# define HASGETDTABLESIZE 1 /* we have getdtablesize(2) call */
180#endif
181
182/* 4.4BSD */
ed0b2c1b
EA
183#ifdef BSD4_4
184# include <sys/cdefs.h>
ba6514e2 185# define HASSETREUID 1 /* have setreuid(2) call */
7621e399
EA
186# define ERRLIST_PREDEFINED /* don't declare sys_errlist */
187#endif
188
ba6514e2
EA
189/*
190** SCO Unix
191*/
192
7621e399
EA
193#ifdef _SCO_unix_
194# define SYSTEM5 1 /* include all the System V defines */
195# define UNSETENV 1 /* need unsetenv(3) support */
196# define FORK fork
197# define MAXPATHLEN PATHSIZE
ed0b2c1b
EA
198#endif
199
ba6514e2 200/**********************************************************************
fd57f063 201** End of Per-Operating System defines
ba6514e2 202**********************************************************************/
fd57f063
EA
203
204/* general System V defines */
205# ifdef SYSTEM5
206# define LOCKF 1 /* use System V lockf instead of flock */
207# define SYS5TZ 1 /* use System V style timezones */
208# define HASUNAME 1 /* use System V uname system call */
209# define NEEDGETDTABLESIZE 1 /* needs a replacement getdtablesize */
210# endif
211
df39ad0d 212/*
38966fa4
EA
213** Due to a "feature" in some operating systems such as Ultrix 4.3 and
214** HPUX 8.0, if you receive a "No route to host" message (ICMP message
215** ICMP_UNREACH_HOST) on _any_ connection, all connections to that host
216** are closed. Some firewalls return this error if you try to connect
217** to the IDENT port (113), so you can't receive email from these hosts
218** on these systems. The firewall really should use a more specific
219** message such as ICMP_UNREACH_PROTOCOL or _PORT or _NET_PROHIB.
df39ad0d
EA
220*/
221
8a47b280 222#if !defined(ultrix) && !defined(__hpux)
df39ad0d
EA
223# define IDENTPROTO 1 /* use IDENT proto (RFC 1413) */
224#endif
19c9e482 225
e6245c7e
EA
226/*
227** Remaining definitions should never have to be changed. They are
228** primarily to provide back compatibility for older systems -- for
6070681d
EA
229** example, it includes some POSIX compatibility definitions
230*/
e6245c7e 231
bd3dddbf
EA
232/* System 5 compatibility */
233#ifndef S_ISREG
234#define S_ISREG(foo) ((foo & S_IFREG) == S_IFREG)
235#endif
236#ifndef S_IWGRP
237#define S_IWGRP 020
238#endif
239#ifndef S_IWOTH
240#define S_IWOTH 002
241#endif
242
030ae776
EA
243/*
244** Older systems don't have this error code -- it should be in
245** /usr/include/sysexits.h.
246*/
247
248# ifndef EX_CONFIG
249# define EX_CONFIG 78 /* configuration error */
250# endif
5229f34d 251
ed0b2c1b
EA
252#ifndef __P
253# include "cdefs.h"
254#endif
255
3356c77c
EA
256/*
257** Do some required dependencies
258*/
259
260#if defined(NETINET) || defined(NETISO)
e9aa7870
EA
261# define SMTP 1 /* enable user and server SMTP */
262# define QUEUE 1 /* enable queueing */
263# define DAEMON 1 /* include the daemon (requires IPC & SMTP) */
3356c77c
EA
264#endif
265
266
5229f34d
EA
267/*
268** Arrange to use either varargs or stdargs
269*/
270
271# ifdef __STDC__
272
273# include <stdarg.h>
274
5229f34d
EA
275# define VA_LOCAL_DECL va_list ap;
276# define VA_START(f) va_start(ap, f)
277# define VA_END va_end(ap)
278
279# else
280
281# include <varargs.h>
282
5229f34d
EA
283# define VA_LOCAL_DECL va_list ap;
284# define VA_START(f) va_start(ap)
285# define VA_END va_end(ap)
286
287# endif
422bed79 288
322eceee 289#ifdef HASUNAME
422bed79
EA
290# include <sys/utsname.h>
291# ifdef newstr
292# undef newstr
293# endif
322eceee 294#else /* ! HASUNAME */
422bed79
EA
295# define NODE_LENGTH 32
296struct utsname
297{
298 char nodename[NODE_LENGTH+1];
299};
322eceee 300#endif /* HASUNAME */
6e99f903 301
7621e399
EA
302#if !defined(MAXHOSTNAMELEN) && !defined(_SCO_unix_)
303# define MAXHOSTNAMELEN 256
8d3fd325 304#endif
49c069a9
EA
305
306#if !defined(SIGCHLD) && defined(SIGCLD)
307# define SIGCHLD SIGCLD
308#endif
309
310#ifndef STDIN_FILENO
311#define STDIN_FILENO 0
312#endif
313
314#ifndef STDOUT_FILENO
315#define STDOUT_FILENO 1
316#endif
317
318#ifndef STDERR_FILENO
319#define STDERR_FILENO 2
320#endif
f8a31c8e
EA
321
322#ifdef LOCKF
323#define LOCK_SH 0x01 /* shared lock */
324#define LOCK_EX 0x02 /* exclusive lock */
325#define LOCK_NB 0x04 /* non-blocking lock */
d8c2a697 326#define LOCK_UN 0x08 /* unlock */
64247676
EA
327
328#else
329
330# include <sys/file.h>
331
f8a31c8e 332#endif
a3685d83
EA
333
334/*
335** Size of tobuf (deliver.c)
336** Tweak this to match your syslog implementation. It will have to
337** allow for the extra information printed.
338*/
339
340#ifndef TOBUFSIZE
341# define TOBUFSIZE (1024 - 256)
342#endif
9114f86c
EA
343
344/* fork routine -- set above using #ifdef _osname_ or in Makefile */
345# ifndef FORK
346# define FORK vfork /* function to call to fork mailer */
347# endif