glfs/server/mail/exim/exim-inst.xml
Larry Lawrence b5ca46036b db - final answer, security update - samba
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@852 af4574ff-66df-0310-9fd7-8a98e5e911e0
2003-04-15 14:17:38 +00:00

20 lines
709 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 -d /dev/null -g exim -s /bin/false 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>