📄 conf.h
字号:
/* * @(#)conf.h 4.1 (ULTRIX) 7/2/90 * conf.h *//************************************************************************ * * * Copyright (c) 1987 by * * Digital Equipment Corporation, Maynard, MA * * All rights reserved. * * * * This software is furnished under a license and may be used and * * copied only in accordance with the terms of such license and * * with the inclusion of the above copyright notice. This * * software or any other copies thereof may not be provided or * * otherwise made available to any other person. No title to and * * ownership of the software is hereby transferred. * * * * This software is derived from software received from the * * University of California, Berkeley, and from Bell * * Laboratories. Use, duplication, or disclosure is subject to * * restrictions under license agreements with University of * * California and with AT&T. * * * * The information in this software is subject to change without * * notice and should not be construed as a commitment by Digital * * Equipment Corporation. * * * * Digital assumes no responsibility for the use or reliability * * of its software on equipment which is not supplied by Digital. * * * ************************************************************************//*** conf.h -- All user-configurable parameters for sendmail*//*** Table sizes, etc....** There shouldn't be much need to change these....*/# define MAXLINE 1024 /* max line length *//*** For Reading mail+ (mailplus) support, increase name length from 256** to 1024. Is needed for mailings to x.400 hosts.*/# define MAXNAME 1024 /* max length of a name */# define MAXFIELD 4096 /* max total length of a hdr field */# define MAXPV 40 /* max # of parms to mailers */# define MAXHOP 17 /* max value of HopCount */# define MAXATOM 100 /* max atoms per address */# define MAXMAILERS 25 /* maximum mailers known to system */# define MAXRWSETS 30 /* max # of sets of rewriting rules */# define MAXPRIORITIES 25 /* max values for Precedence: field */# define MAXTRUST 30 /* maximum number of trusted users */# define MAXUSERENVIRON 40 /* max # of items in user environ */# define QUEUESIZE 600 /* max # of jobs per queue run */# define MAXMXHOSTS 10 /* max # of MX records *//*** Compilation options.**** #define these if they are available; comment them out otherwise.*/# define DBM 1 /* use DBM library (requires -ldbm) */# define NDBM 1 /* new DBM library available (requires DBM) *//* # define DEBUG 1 /* enable debugging */# define LOG 1 /* enable logging */# define SMTP 1 /* enable user and server SMTP */# define QUEUE 1 /* enable queueing */# define UGLYUUCP 1 /* output ugly UUCP From lines */# define DAEMON 1 /* include the daemon (requires IPC & SMTP) */# define SETPROCTITLE 1 /* munge argv to display current status */# define FLOCK 1 /* use flock file locking */# define DNUMODS 1 /* modifications needed for DECnet-ULTRIX */#if 0/* # define WIZ 1 /* allow wizard mode */#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -