]> git.pld-linux.org Git - packages/exim.git/blob - exim-EDITME.patch
- Patch for template of exim Makefile.
[packages/exim.git] / exim-EDITME.patch
1 Binary files exim-3.15.orig/doc/FAQ.txt.gz and exim-3.15/doc/FAQ.txt.gz differ
2 Binary files exim-3.15.orig/doc/config.samples.tar.gz and exim-3.15/doc/config.samples.tar.gz differ
3 diff -urN exim-3.15.orig/src/EDITME exim-3.15/src/EDITME
4 --- exim-3.15.orig/src/EDITME   Wed Jun 14 09:57:40 2000
5 +++ exim-3.15/src/EDITME        Wed Jul 19 17:24:12 2000
6 @@ -103,7 +103,7 @@
7  # installed in this directory. There is no default for this variable built into
8  # the source files; it must be set in one of the local configuration files.
9  
10 -BIN_DIRECTORY=/usr/exim/bin
11 +BIN_DIRECTORY=/usr/bin
12  
13  
14  # The default distribution of Exim contains only the plain text form of the
15 @@ -114,21 +114,21 @@
16  # your info directory; "make install" will then build the info files and
17  # install them there.
18  
19 -# INFO_DIRECTORY=/usr/local/info
20 +INFO_DIRECTORY=/usr/share/info
21  
22  
23  # The compress command is used by the exicyclog script to compress old log
24  # files. Both the name of the command and the suffix that it adds to files
25  # need to be defined here. See also the EXICYCLOG_MAX configuration.
26  
27 -COMPRESS_COMMAND=/opt/gnu/bin/gzip
28 +COMPRESS_COMMAND=/bin/gzip
29  COMPRESS_SUFFIX=gz
30  
31  
32  # If the exigrep utility is fed compressed log files, it tries to uncompress
33  # them using this command.
34  
35 -ZCAT_COMMAND=/opt/gnu/bin/zcat
36 +ZCAT_COMMAND=/bin/zcat
37  
38  
39  # The runtime configuration file: This variable defines where Exim's runtime
40 @@ -137,7 +137,7 @@
41  # location of all other runtime files and directories can be changed in the
42  # runtime configuration file.
43  
44 -CONFIGURE_FILE=/usr/exim/configure
45 +CONFIGURE_FILE=/etc/mail/exim.conf
46  
47  
48  # In some installations there may be multiple machines sharing file systems,
49 @@ -148,7 +148,7 @@
50  # period (for example, /usr/exim/configure.host.in.some.domain. If this file
51  # does not exist, then the bare configuration file name is tried.
52  
53 -# CONFIGURE_FILE_USE_NODE=yes
54 +CONFIGURE_FILE_USE_NODE=yes
55  
56  
57  # In some esoteric configurations two different versions of Exim are run,
58 @@ -229,8 +229,8 @@
59  # "security" setting, which controls how privilege is released (setuid vs
60  # seteuid).
61  
62 -# EXIM_UID=
63 -# EXIM_GID=
64 +EXIM_UID=79
65 +EXIM_GID=79
66  
67  
68  # Compiling the Exim monitor: If you want to compile the Exim monitor,
69 @@ -284,7 +284,7 @@
70  # "panic", or "reject" to form the final file name. For example, some
71  # installations may want something like this:
72  
73 -# LOG_FILE_PATH=/var/log/exim_%slog
74 +LOG_FILE_PATH=/var/log/exim/%s.log
75  
76  # which results in files with names /var/log/exim_mainlog, etc. The directory
77  # in which the log files are placed must exist; Exim does not try to create
78 @@ -336,7 +336,7 @@
79  
80  # LOOKUP_CDB=yes
81  # LOOKUP_DNSDB=yes
82 -# LOOKUP_LDAP=yes
83 +LOOKUP_LDAP=yes
84  # LOOKUP_MYSQL=yes
85  # LOOKUP_NIS=yes
86  # LOOKUP_NISPLUS=yes
87 @@ -350,6 +350,7 @@
88  
89  # LOOKUP_INCLUDE=-I /usr/local/ldap/include -I /usr/local/mysql/include -I /usr/local/pgsql/include
90  # LOOKUP_LIBS=-L/usr/local/lib -lldap -llber -lmysqlclient -lpq
91 +LOOKUP_LIBS=-lldap -llber
92  
93  # If you have set LDAP=yes, you should set LDAP_LIB_TYPE to indicate which LDAP
94  # library you have. Unfortunately, though most of their functions are the
95 @@ -358,7 +359,7 @@
96  # SDK library, and the library that comes with Solaris 7. Uncomment whichever
97  # of these you are using.
98  
99 -# LDAP_LIB_TYPE=UMICHIGAN
100 +LDAP_LIB_TYPE=UMICHIGAN
101  # LDAP_LIB_TYPE=NETSCAPE
102  # LDAP_LIB_TYPE=SOLARIS7
103  
104 @@ -407,7 +408,7 @@
105  # the file name, allowing sites that run two separate daemons to distinguish
106  # them. Some installations may want something like this
107  
108 -# PID_FILE_PATH=/var/lock/exim%s.pid
109 +PID_FILE_PATH=/var/run/exim%s.pid
110  
111  # If PID_FILE_PATH is not defined, Exim writes a file in its spool directory
112  # (see SPOOL_DIRECTORY below) with the name "exim-daemon.pid" for the standard
113 @@ -456,7 +457,7 @@
114  # uid and gid.
115  
116  # Many installations will want something like this:
117 -# SPOOL_DIRECTORY=/var/spool/exim
118 +SPOOL_DIRECTORY=/var/spool/exim
119  
120  # Others may prefer to keep all Exim things under one directory:
121  # SPOOL_DIRECTORY=/usr/exim/spool
122 @@ -474,7 +475,7 @@
123  # member of the Exim group, change the value to 0640. This is particularly
124  # relevant if you are going to run the Exim monitor.
125  
126 -# SPOOL_MODE=0600
127 +SPOOL_MODE=0640
128  
129  
130  # If STDERR_FILE is defined then the -df command line option causes Exim to
131 @@ -488,9 +489,9 @@
132  # of formats. The code for three specialist formats, maildir, mailstore, and
133  # MBX, is included only when requested by the following settings:
134  
135 -# SUPPORT_MAILDIR=yes
136 -# SUPPORT_MAILSTORE=yes
137 -# SUPPORT_MBX=yes
138 +SUPPORT_MAILDIR=yes
139 +SUPPORT_MAILSTORE=yes
140 +SUPPORT_MBX=yes
141  
142  
143  # Moving frozen messages: If the following is uncommented, Exim is compiled
144 @@ -508,10 +509,12 @@
145  # support, which is intended for use in conjunction with the SMTP AUTH
146  # facilities, is included only when requested by the following setting:
147  
148 -# SUPPORT_PAM=yes
149 +SUPPORT_PAM=yes
150  
151  # You probably need to add -lpam to EXTRALIBS, and in some releases of
152  # GNU/Linux -ldl is also needed.
153 +
154 +EXTRALIBS=-lpam -ldl
155  
156  
157  # Included transports: These variables determine which individual transport
This page took 0.041968 seconds and 3 git commands to generate.