Ignore:
Timestamp:
09/23/2003 12:29:11 AM (21 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
de8804e
Parents:
f07203c5
Message:

updated to exim-4.24

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1169 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/mail/exim/exim-config.xml

    rf07203c5 rf77c1eb0  
    33
    44<sect3><title>Config files</title>
     5
    56<para><filename>/etc/exim.conf</filename>, <filename>/etc/aliases</filename></para>
     7
    68</sect3>
    79
    8 <sect3><title>Configuration of exim</title>
    9 <para>Create the exim configuration files with the following commands:
    10 </para>
    11 <para><screen><userinput>cat &gt;&gt; /etc/aliases &lt;&lt; "EOF"</userinput>
     10<sect3><title>Configuration Information</title>
     11
     12<para>Create the exim configuration files with the following commands:</para>
     13
     14<screen><userinput><command>cat &gt;&gt; /etc/aliases &lt;&lt; "EOF"
    1215postmaster: root
    1316MAILER-DAEMON: root
    14 <userinput>EOF
     17EOF
    1518exim -v -bi &amp;&amp;
    16 /usr/sbin/exim -bd -q1m</userinput></screen></para>
     19/usr/sbin/exim -bd -q1m</command></userinput></screen>
    1720
    1821<note><para>To protect an existing <filename>/etc/aliases</filename>
    19 file, we will append these aliases to it if it exists.  This file
     22file, we will append these aliases to it if it exists. This file
    2023should be checked and duplicate aliases removed, if
    2124present.</para></note>
    2225
     26<para>To start and stop exim on system boot/shutdown create the
     27exim boot script with the following commands:</para>
    2328
    24 <para>To start and stop exim on system boot/shutdown create the
    25 exim boot script with the following commands: </para>
    26 
    27 <para><screen><userinput>cat &gt; /etc/rc.d/init.d/exim &lt;&lt; "EOF"</userinput>
     29<screen><userinput><command>cat &gt; /etc/rc.d/init.d/exim &lt;&lt; "EOF"
    2830#!/bin/sh
    2931# Begin $rc_base/init.d/exim
     
    6466
    6567# End $rc_base/init.d/exim
    66 <userinput>EOF
    67 chmod 755 /etc/rc.d/init.d/exim</userinput></screen></para>
     68EOF
     69chmod 755 /etc/rc.d/init.d/exim</command></userinput></screen>
    6870
    69 <para>Create the run level symlinks with the following commands:
    70 </para>
    71 <para>
    72 <screen><userinput>cd /etc/rc.d/init.d &amp;&amp;
     71<para>Create the run level symlinks with the following commands:</para>
     72
     73<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
    7374ln -sf ../init.d/exim ../rc0.d/K25exim &amp;&amp;
    7475ln -sf ../init.d/exim ../rc1.d/K25exim &amp;&amp;
     
    7778ln -sf ../init.d/exim ../rc4.d/S35exim &amp;&amp;
    7879ln -sf ../init.d/exim ../rc5.d/S35exim &amp;&amp;
    79 ln -sf ../init.d/exim ../rc6.d/K25exim</userinput></screen></para>
     80ln -sf ../init.d/exim ../rc6.d/K25exim</command></userinput></screen>
     81
    8082</sect3>
    8183
Note: See TracChangeset for help on using the changeset viewer.