2002-08-27 06:23:32 +08:00
|
|
|
<sect2>
|
|
|
|
<title>Installation command explanations</title>
|
|
|
|
|
2003-04-06 00:32:17 +08:00
|
|
|
<para><screen><userinput>
|
2002-08-27 06:23:32 +08:00
|
|
|
groupadd exim
|
2003-04-06 00:32:17 +08:00
|
|
|
useradd -g exim exim</userinput></screen>
|
2002-08-27 06:23:32 +08:00
|
|
|
Create the group and user exim which will run the the exim
|
|
|
|
daemon.</para>
|
|
|
|
|
2003-04-06 00:32:17 +08:00
|
|
|
<para><screen><userinput>sed -e 's/^BIN_DIR.*$/BIN_DIRECTORY=\/usr\/sbin/' src/EDITME | \
|
2002-08-27 06:23:32 +08:00
|
|
|
sed -e 's/^CONF.*$/CONFIGURE_FILE=\/etc\/exim.conf/' | \
|
|
|
|
sed -e 's/^EXIM_USER.*$/EXIM_USER=exim/' | \
|
2003-04-06 00:32:17 +08:00
|
|
|
sed -e 's/^EXIM_MONITOR/#EXIM_MONITOR/' > Local/Makefile</userinput></screen>
|
2002-08-27 06:23:32 +08:00
|
|
|
Many of exim's configuration options are compiled in. Here, we
|
|
|
|
specify the minimum set of options, BIN_DIRECTORY, CONFIGURE_FILE and
|
|
|
|
EXIM_USER. We also defer building the exim monitor program, which
|
|
|
|
requires X windows support, by commenting out the EXIM_MONITOR line in
|
|
|
|
the Makefile.</para>
|
|
|
|
|
2003-04-06 00:32:17 +08:00
|
|
|
<para><userinput>ln -s /usr/sbin/exim /usr/sbin/sendmail</userinput> : Create a link to sendmail for applications which need it. exim will
|
2002-08-27 06:23:32 +08:00
|
|
|
accept most Sendmail command line options.</para>
|
|
|
|
|
|
|
|
</sect2>
|