glfs/server/mail/exim/exim-inst.xml
Billy O 'Connor 7319b783bd <screen> formatting fixes.
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@645 af4574ff-66df-0310-9fd7-8a98e5e911e0
2003-02-01 16:51:51 +00:00

20 lines
682 B
XML

<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>
<para><screen><userinput>groupadd exim
useradd -g exim exim</userinput></screen></para>
<para>Install exim with the following commands:</para>
<para><screen><userinput>sed -e 's/^BIN_DIR.*$/BIN_DIRECTORY=\/usr\/sbin/' src/EDITME | \
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 &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
ln -s /usr/sbin/exim /usr/sbin/sendmail</userinput></screen></para>
</sect2>