mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-09 03:37:18 +08:00
98d18589d8
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1937 af4574ff-66df-0310-9fd7-8a98e5e911e0
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<sect2>
|
|
<title>Configuring Exim</title>
|
|
|
|
<sect3><title>Config files</title>
|
|
|
|
<para><filename>/etc/exim.conf</filename>, <filename>/etc/aliases</filename></para>
|
|
|
|
</sect3>
|
|
|
|
<sect3><title>Configuration Information</title>
|
|
|
|
<para>Create the Exim configuration files with the following commands:</para>
|
|
|
|
<screen><userinput><command>cat >> /etc/aliases << "EOF"</command>
|
|
postmaster: root
|
|
MAILER-DAEMON: root
|
|
<command>EOF
|
|
exim -v -bi &&
|
|
/usr/sbin/exim -bd -q1m</command></userinput></screen>
|
|
|
|
<note><para>To protect an existing <filename>/etc/aliases</filename>
|
|
file, we will append these aliases to it if it exists. This file
|
|
should be checked and duplicate aliases removed, if
|
|
present.</para></note>
|
|
|
|
<para>To automate the running of exim at startup,
|
|
install <filename>/etc/rc.d/init.d/exim</filename>
|
|
init script included in the <xref linkend="intro-important-bootscripts"/> package.</para>
|
|
|
|
<screen><userinput><command>make install-exim</command></userinput></screen>
|
|
|
|
</sect3>
|
|
|
|
</sect2>
|