mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-16 01:00:28 +08:00
24 lines
686 B
XML
24 lines
686 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 &&
|
||
|
make &&
|
||
|
make install &&
|
||
|
ln -s /usr/sbin/exim /usr/sbin/sendmail
|
||
|
</userinput></screen></para>
|
||
|
</sect2>
|
||
|
|