summaryrefslogtreecommitdiffstats
path: root/maildrop/xconfig.h.in
diff options
context:
space:
mode:
authorSam Varshavchik2013-08-19 16:39:41 -0400
committerSam Varshavchik2013-08-25 14:43:51 -0400
commit9c45d9ad13fdf439d44d7443ae75da15ea0223ed (patch)
tree7a81a04cb51efb078ee350859a64be2ebc6b8813 /maildrop/xconfig.h.in
parenta9520698b770168d1f33d6301463bb70a19655ec (diff)
downloadcourier-libs-9c45d9ad13fdf439d44d7443ae75da15ea0223ed.tar.bz2
Initial checkin
Imported from subversion report, converted to git. Updated all paths in scripts and makefiles, reflecting the new directory hierarchy.
Diffstat (limited to 'maildrop/xconfig.h.in')
-rw-r--r--maildrop/xconfig.h.in58
1 files changed, 58 insertions, 0 deletions
diff --git a/maildrop/xconfig.h.in b/maildrop/xconfig.h.in
new file mode 100644
index 0000000..1bf262a
--- /dev/null
+++ b/maildrop/xconfig.h.in
@@ -0,0 +1,58 @@
+#ifndef config_h
+#define config_h
+
+
+/*
+
+ These variables are set by the configure script - DO NOT EDIT
+
+ Directory for temporary files.
+*/
+
+#define TEMPDIR "@TEMPDIR@"
+
+/* Temporary files are used for messages larger than SMALLMSG bytes. */
+
+#define SMALLMSG @SMALLMSG@
+
+/* Watchdog timer */
+
+#define GLOBAL_TIMEOUT @GLOBAL_TIMEOUT@
+
+/* Terminate line with a CRLF pair. */
+
+#define CRLF_TERM @CRLF_TERM@
+
+/* Initial values for corresponding variables */
+
+#define LOCKEXT_DEF "@LOCKEXT_DEF@"
+#define LOCKSLEEP_DEF "@LOCKSLEEP_DEF@"
+#define LOCKTIMEOUT_DEF "@LOCKTIMEOUT_DEF@"
+#define LOCKREFRESH_DEF "@LOCKREFRESH_DEF@"
+
+/* Set to 1 to restrict -d option to trusted users only */
+
+#define RESTRICT_TRUSTED @RESTRICT_TRUSTED@
+
+/* Set to 1 to keep the original From_ line in message (if any).
+ Otherwise, the original From_ line is kept only if invoked by root. */
+
+#define KEEP_FROMLINE @KEEP_FROMLINE@
+
+/* Define the DEFAULT extension for enhanced embedded mode. */
+
+#define DEFAULTEXT "-default"
+
+/* Use flock/lockf locking */
+
+#define USE_FLOCK @USE_FLOCK@
+
+/* Use dotlock locking */
+
+#define USE_DOTLOCK @USE_DOTLOCK@
+
+/* Automatic version */
+
+#define VERSION "@VERSION@"
+
+#endif