1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2012 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* The default settings for Exim configuration variables. A #define without
9 any data just defines the existence of the variable; it won't get included
10 in config.h unless some value is defined in Local/Makefile. If there is data,
11 it's a default value. */
13 #define ALT_CONFIG_PREFIX
14 #define TRUSTED_CONFIG_LIST
16 #define APPENDFILE_MODE 0600
17 #define APPENDFILE_DIRECTORY_MODE 0700
18 #define APPENDFILE_LOCKFILE_MODE 0600
21 #define AUTH_CYRUS_SASL
24 #define AUTH_HEIMDAL_GSSAPI
25 #define AUTH_PLAINTEXT
32 #define CONFIGURE_FILE
33 #define CONFIGURE_FILE_USE_EUID
34 #define CONFIGURE_FILE_USE_NODE
35 #define CONFIGURE_GROUP
36 #define CONFIGURE_OWNER
37 #define CYRUS_PWCHECK_SOCKET
38 #define CYRUS_SASLAUTHD_SOCKET
40 #define DEFAULT_CRYPT crypt
41 #define DELIVER_IN_BUFFER_SIZE 8192
42 #define DELIVER_OUT_BUFFER_SIZE 8192
44 #define DISABLE_D_OPTION
46 #define ENABLE_DISABLE_FSYNC
48 #define EXIMDB_DIRECTORY_MODE 0750
49 #define EXIMDB_LOCK_TIMEOUT 60
50 #define EXIMDB_LOCKFILE_MODE 0640
51 #define EXIMDB_MODE 0640
52 #define EXIM_CLIENT_DH_MIN_BITS
53 #define EXIM_GNUTLS_LIBRARY_LOG_LEVEL
54 #define EXIM_SERVER_DH_BITS_PRE2_12
56 /* Both uid and gid are triggered by this */
59 #define EXPAND_LISTMATCH_RHS
61 #define FIXED_NEVER_USERS "root"
65 #define HEADERS_CHARSET "ISO-8859-1"
66 #define HEADER_ADD_BUFFER_SIZE (8192 * 4)
67 #define HEADER_MAXSIZE (1024*1024)
69 #define INPUT_DIRECTORY_MODE 0750
70 #define IPV6_USE_INET_PTON
73 #define LOCAL_SCAN_HAS_OPTIONS
75 #define LOG_DIRECTORY_MODE 0750
82 #define LOOKUP_DSEARCH
85 #define LOOKUP_LSEARCH
88 #define LOOKUP_NISPLUS
95 #define LOOKUP_WILDLSEARCH
96 #define LOOKUP_NWILDLSEARCH
98 #define LOOKUP_MODULE_DIR
100 #define MAX_FILTER_SIZE (1024*1024)
101 #define MAX_LOCALHOST_NUMBER 256
102 #define MAX_INCLUDE_SIZE (1024*1024)
103 #define MAX_INTERFACES 250
104 #define MAX_NAMED_LIST 16
105 #define MSGLOG_DIRECTORY_MODE 0750
109 #define PID_FILE_PATH
111 #define RADIUS_CONFIG_FILE
112 #define RADIUS_LIB_TYPE
114 #define ROUTER_ACCEPT
115 #define ROUTER_DNSLOOKUP
116 #define ROUTER_IPLITERAL
117 #define ROUTER_IPLOOKUP
118 #define ROUTER_MANUALROUTE
119 #define ROUTER_QUERYPROGRAM
120 #define ROUTER_REDIRECT
122 #define SPOOL_DIRECTORY
123 #define SPOOL_DIRECTORY_MODE 0750
124 #define SPOOL_MODE 0640
125 #define STRING_SPRINTF_BUFFER_SIZE (8192 * 4)
128 #define SUPPORT_CRYPTEQ
129 #define SUPPORT_MAILDIR
130 #define SUPPORT_MAILSTORE
132 #define SUPPORT_MOVE_FROZEN_MESSAGES
135 #define SUPPORT_TRANSLATE_IP_ADDRESS
137 #define SYSLOG_LOG_PID
138 #define SYSLOG_LONG_LINES
140 #define TCP_WRAPPERS_DAEMON_NAME "exim"
141 #define TIMEZONE_DEFAULT
144 #define TRANSPORT_APPENDFILE
145 #define TRANSPORT_AUTOREPLY
146 #define TRANSPORT_LMTP
147 #define TRANSPORT_PIPE
148 #define TRANSPORT_SMTP
154 #define USE_TCP_WRAPPERS
157 #define WHITELIST_D_MACROS
159 #define WITH_CONTENT_SCAN
160 #define WITH_OLD_DEMIME
161 #define WITH_OLD_CLAMAV_STREAM
163 /* EXPERIMENTAL features */
164 #define EXPERIMENTAL_BRIGHTMAIL
165 #define EXPERIMENTAL_DCC
166 #define EXPERIMENTAL_OCSP
167 #define EXPERIMENTAL_SPF
168 #define EXPERIMENTAL_SRS
171 #define WANT_DEEPER_PRINTF_CHECKS
173 /* Things that are not routinely changed but are nevertheless configurable
176 #define DNS_MAXNAME 1024
177 #define EXPAND_MAXN 20
181 /* Sizes for integer arithmetic. Go for 64bit; can be overridden in OS/os.h-FOO */
182 #ifndef int_eximarith_t
183 #define int_eximarith_t int64_t
185 #ifndef PR_EXIM_ARITH
186 #define PR_EXIM_ARITH "%" PRId64 /* C99 standard, printf %lld */
188 #ifndef SC_EXIM_ARITH
189 #define SC_EXIM_ARITH "%" SCNi64 /* scanf incl. 0x prefix */
192 #define SC_EXIM_DEC "%" SCNd64 /* scanf decimal */
195 /* End of config.h.defaults */