]> diplodocus.org Git - nmh/blob - acconfig.h
Typecast to get rid of warnings that index into cc[] is a char.
[nmh] / acconfig.h
1
2 /****** BEGIN USER CONFIGURATION SECTION *****/
3
4 /*
5 * IMPORTANT: You should no longer need to edit this file to handle
6 * your operating system. That should be handled and set correctly by
7 * configure now.
8 *
9 * These are slowly being phased out, but currently
10 * not everyone is auto-configured. Then decide if you
11 * wish to change the features that are compiled into nmh.
12 */
13
14 /*
15 * Turn on locale (setlocale) support
16 */
17 #define LOCALE 1
18
19 /*
20 * Define to 1 the type of file locking to use. You need to
21 * make sure the type of locking you use is compatible with
22 * other programs which may modify your maildrops.
23 * Currently you can only use one type.
24 */
25 #define DOT_LOCKING 1
26 /* #define FCNTL_LOCKING 1 */
27 /* #define LOCKF_LOCKING 1 */
28 /* #define FLOCK_LOCKING 1 */
29
30 /*
31 * If you have defined DOT_LOCKING, then the default is to
32 * place the lock files in the same directory as the file that
33 * is to be locked. Alternately, if you define LOCKDIR, you
34 * can specify that all lock files go in a specific directory.
35 * Don't define this unless you know you need it.
36 */
37 /* #define LOCKDIR "/usr/spool/locks" */
38
39 /*
40 * Define this if your passwords are stored in some type of
41 * distributed name service, such as NIS, or NIS+.
42 */
43 #define DBMPWD 1
44
45 /*
46 * Directs nmh not to try and rewrite addresses
47 * to their official form. You probably don't
48 * want to change this without good reason.
49 */
50 #define DUMB 1
51
52 /*
53 * Define this if you do not want nmh to attach the local hostname
54 * to local addresses. You must also define DUMB. You probably
55 * dont' need this unless you are behind a firewall.
56 */
57 /* #define REALLYDUMB 1 */
58
59 /*
60 * Directs inc/slocal to extract the envelope sender from "From "
61 * line. If inc/slocal is saving message to folder, then this
62 * sender information is then used to create a Return-Path
63 * header which is then added to the message.
64 */
65 #define RPATHS 1
66
67 /*
68 * If defined, slocal will use `mbox' format when saving to
69 * your standard mail spool. If not defined, it will use
70 * mmdf format.
71 */
72 #define SLOCAL_MBOX 1
73
74 /*
75 * If this is defined, nmh will recognize the ~ construct.
76 */
77 #define MHRC 1
78
79 /*
80 * Compile simple ftp client into mhn. This will be used by mhn
81 * for ftp access unless you have specified another access method
82 * in your .mh_profile or mhn.defaults. Use the "mhn-access-ftp"
83 * profile entry to override this. Check mhn(1) man page for
84 * details.
85 */
86 #define BUILTIN_FTP 1
87
88 /*
89 * If you enable POP support, this is the the port name
90 * that nmh will use. Make sure this is defined in your
91 * /etc/services file (or its NIS/NIS+ equivalent). If you
92 * are using KPOP, you will probably need to change this
93 * to "kpop".
94 */
95 #define POPSERVICE "pop3"
96
97 /*
98 * Define the default creation modes for folders and messages.
99 */
100 #define DEFAULT_FOLDER_MODE "0700"
101 #define DEFAULT_MESSAGE_MODE "0600"
102
103 /*
104 * The prefix which is prepended to the name of messages when they
105 * are "removed" by rmm. This should typically be `,' or `#'
106 */
107 #define BACKUP_PREFIX ","
108
109 /*
110 * Name of link to file to which you are replying.
111 */
112 #define LINK "@"
113
114 /*
115 * If wait/waitpid returns an int (no union wait).
116 */
117 #define WAITINT 1
118
119 /* The following are autoconfigured, but you may wish to override the
120 * decisions of autoconf (and AC_CANONICAL_SYSTEM) and do your own
121 * thing. If so, you can modify the definitions. The Comments are as
122 * useful as ever. */
123
124 /* these three are only used in vmh.c, which currently is not being
125 * built anyway. -Doug */
126 /* Defined for Solaris 2.x, Irix, OSF/1, HP-UX, AIX, SCO5 */
127 #undef SYS5
128 /* Defined for Solaris 2.x, Irix, OSF/1, HP-UX, AIX */
129 #undef SVR4
130 /* Defined for SunOS 4, FreeBSD, NetBSD, OpenBSD, BSD/OS, Mac OS X/Rhapsody */
131 #undef BSD44
132
133 /* Defined for SunOS 4, FreeBSD, NetBSD, OpenBSD, BSD/OS, Mac OS X/Rhapsody
134 * -- does PicoBSD have uname? :) */
135 #undef BSD42
136
137 /* Defined for SCO5 */
138 #undef SCO_5_STDIO
139
140 /* This tells nmh to use the Linux _IO_*_ptr defines from libio.h */
141 #undef LINUX_STDIO
142
143
144 /***** END USER CONFIGURATION SECTION *****/
145 @TOP@
146
147
148 /*
149 * Define this if you want SMTP (simple mail transport protocol)
150 * support. When sending mail, instead of passing the message to
151 * the mail transport agent (typically sendmail), nmh will open a
152 * socket connection to the mail port on the machine specified in
153 * the `mts.conf' file (default is localhost), and speak SMTP directly.
154 */
155 #undef SMTPMTS
156
157 /*
158 * Use sendmail as transport agent. Post messages by piping
159 * them directly to sendmail.
160 */
161 #undef SENDMTS
162
163 /*
164 * Define this to compile client-side support for pop into
165 * inc and msgchk. Do not change this value manually. You
166 * must run configure with the '--enable-nmh-pop' option
167 * to correctly build the pop client support.
168 */
169 #undef POP
170
171 /*
172 * Define this to compile client-side support for kpop
173 * (kerberized pop) into inc and msgchk. Do not change this
174 * value manually. You must run configure with the option
175 * '--with-krb4=PREFIX' to correctly build the kpop client support.
176 */
177 #undef KPOP
178
179 /*
180 * Define this to "pop" when using Kerberos V4
181 */
182 #undef KPOP_PRINCIPAL
183
184 /*
185 * Define this to compile support for using Hesiod to locate
186 * pop servers into inc and msgchk. Do not change this value
187 * manually. You must run configure with the option
188 * '--with-hesiod=PREFIX' to correctly build Hesiod support.
189 */
190 #undef HESIOD
191
192 /*
193 * Compile in support for the Emacs front-end mh-e.
194 */
195 #undef MHE
196
197 /* Define to 1 if your termcap library has the ospeed variable */
198 #undef HAVE_OSPEED
199 /* Define to 1 if you have ospeed, but it is not defined in termcap.h */
200 #undef MUST_DEFINE_OSPEED
201
202 /* Define to 1 if tgetent() accepts NULL as a buffer */
203 #undef TGETENT_ACCEPTS_NULL
204
205 /* Define to 1 if you have reliable signals */
206 #undef RELIABLE_SIGNALS
207
208 /* Define to 1 if you use POSIX style signal handling */
209 #undef POSIX_SIGNALS
210
211 /* Define to 1 if you use BSD style signal handling (and can block signals) */
212 #undef BSD_SIGNALS
213
214 /* Define to 1 if you use SYS style signal handling (and can block signals) */
215 #undef SYSV_SIGNALS
216
217 /* Define to 1 if you have no signal blocking at all (bummer) */
218 #undef NO_SIGNAL_BLOCKING
219
220 /* Define to `unsigned int' if <sys/types.h> or <signal.h> doesn't define */
221 #undef sigset_t
222
223 /*
224 * Define to 1 if your vi has ATT bug, such that it returns
225 * non-zero exit codes on `pseudo-errors'.
226 */
227 #undef ATTVIBUG
228
229 /*
230 * Define to 1 if you need to make `inc' set-group-id because your mail spool is
231 * not world writable. There are no guarantees as to the safety of doing this,
232 * but this #define will add some extra security checks.
233 */
234 #undef MAILGROUP
235
236 /* Define ruserpass as _ruserpass if your libraries have a bug *
237 * such that it can't find ruserpass, but can find _ruserpass. */
238 #undef ruserpass
239
240 /* Define if your system defines TIOCGWINSZ in sys/ioctl.h. */
241 #undef GWINSZ_IN_SYS_IOCTL
242
243 /* Define if your system defines `struct winsize' in sys/ptem.h. */
244 #undef WINSIZE_IN_PTEM
245
246 /* Define to 1 if struct tm has gmtoff */
247 #undef HAVE_TM_GMTOFF
248
249 /* Define if your system has sigsetjmp */
250 #undef HAVE_SIGSETJMP
251
252 /* Define if your system has mkstemp */
253 #undef HAVE_MKSTEMP
254
255 /* Define if your system has sethostent */
256 #undef HAVE_SETHOSTENT
257
258 /* Define if your system has gethostbyname */
259 #undef HAVE_GETHOSTBYNAME
260
261 /* Define if your system has netdb.h */
262 #undef HAVE_NETDB_H
263
264 /* Define if your system has db1/ndbm.h instead of ndbm.h (ppclinux) */
265 #undef HAVE_DB1_NDBM_H