2002-08-27 06:23:32 +08:00
|
|
|
<sect2>
|
|
|
|
<title>Installation of exim</title>
|
|
|
|
|
|
|
|
<para>Before building exim, we need to create a user and group for
|
|
|
|
exim with the following commands:</para>
|
2003-02-02 00:51:51 +08:00
|
|
|
<para><screen><userinput>groupadd exim
|
|
|
|
useradd -g exim exim</userinput></screen></para>
|
2002-08-27 06:23:32 +08:00
|
|
|
|
|
|
|
<para>Install exim with the following commands:</para>
|
|
|
|
|
2003-02-02 00:51:51 +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/' | \
|
|
|
|
sed -e 's/^EXIM_MONITOR/#EXIM_MONITOR/' > Local/Makefile &&
|
|
|
|
make &&
|
|
|
|
make install &&
|
2003-02-02 00:51:51 +08:00
|
|
|
ln -s /usr/sbin/exim /usr/sbin/sendmail</userinput></screen></para>
|
2002-08-27 06:23:32 +08:00
|
|
|
</sect2>
|
|
|
|
|