Ignore:
Timestamp:
09/26/2003 07:39:35 PM (21 years ago)
Author:
Larry Lawrence <larry@…>
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:
5afbfa23
Parents:
79f87f94
Message:

chapter 22

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

File:
1 edited

Legend:

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

    r79f87f94 r547df0bc  
    11<sect2>
    2 <title>Configuring qmail</title>
     2<title>Configuring <application>qmail</application></title>
    33
    44<sect3><title>Config files</title>
     
    88<sect3><title>Configuration Information</title>
    99
    10 <para>If inetd is used, the following command will add the qmaild
     10<para>If <command>inetd</command> is used, the following command will add the qmaild
    1111entry to <filename>/etc/inetd.conf</filename>: </para>
    1212
     
    1414tcp-env /var/qmail/bin/qmail-smtpd" >> /etc/inetd.conf</userinput></screen></para>
    1515
    16 <para>If xinetd is used, the following command will add the qmaild
     16<para>If <command>xinetd</command> is used, the following command will add the qmaild
    1717entry to <filename>/etc/xinetd.conf</filename>: </para>
    1818
    19 <para><screen><userinput>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"</userinput>
     19<screen><userinput><command>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"</command>
    2020service smtp
    2121{
     
    3232    log_on_failture         += USERID
    3333}
    34 <userinput>EOF</userinput></screen></para>
     34<command>EOF</command></userinput></screen>
    3535
    36 <para>To automate the running of qmail, use following command to
     36<para>To automate the running of <application>qmail</application>, use following command to
    3737create the init.d script:</para>
    3838
    39 <para><screen><userinput>cat &gt; /etc/rc.d/init.d/qmail &lt;&lt; "EOF"</userinput>
     39<screen><userinput><command>cat &gt; /etc/rc.d/init.d/qmail &lt;&lt; "EOF"</command>
    4040#!/bin/sh
    4141# Begin $rc_base/init.d/qmail
     
    7272
    7373# End $rc_base/init.d/qmail
    74 <userinput>EOF
    75 chmod 755 /etc/rc.d/init.d/qmail</userinput></screen></para>
     74<command>EOF
     75chmod 755 /etc/rc.d/init.d/qmail</command></userinput></screen>
    7676
    7777<para>Create the symbolic links to this file in the relevant
    78 <filename>rc.d</filename> directory with the following commands:
     78<filename>rc.d</filename> directory with the following commands:</para>
    7979
    80 <screen><userinput>cd /etc/rc.d/init.d &amp;&amp;
     80<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
    8181ln -sf ../init.d/qmail ../rc0.d/K25qmail &amp;&amp;
    8282ln -sf ../init.d/qmail ../rc1.d/K25qmail &amp;&amp;
     
    8585ln -sf ../init.d/qmail ../rc4.d/S35qmail &amp;&amp;
    8686ln -sf ../init.d/qmail ../rc5.d/S35qmail &amp;&amp;
    87 ln -sf ../init.d/qmail ../rc6.d/K25qmail</userinput></screen></para>
     87ln -sf ../init.d/qmail ../rc6.d/K25qmail</command></userinput></screen>
    8888
    8989</sect3>
Note: See TracChangeset for help on using the changeset viewer.