Changeset 547df0bc for server/mail/qmail


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

Location:
server/mail/qmail
Files:
4 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>
  • server/mail/qmail/qmail-inst.xml

    r79f87f94 r547df0bc  
    11<sect2>
    2 <title>Installation of qmail</title>
     2<title>Installation of <application>qmail</application></title>
    33
    4 <para>qmail needs certain user and group account to be added before
     4<para><application>qmail</application> needs certain user and group account to be added before
    55installation of the software.  Add the users and groups with the
    66following commands:</para>
    77
    88
    9 <para><screen><userinput>mkdir /var/qmail &amp;&amp;
     9<screen><userinput><command>mkdir /var/qmail &amp;&amp;
    1010groupadd nofiles &amp;&amp;
    1111useradd -g nofiles -d /var/qmail/alias alias &amp;&amp;
     
    1616useradd -g qmail -d /var/qmail qmailq &amp;&amp;
    1717useradd -g qmail -d /var/qmail qmailr &amp;&amp;
    18 useradd -g qmail -d /var/qmail qmails</userinput></screen></para>
     18useradd -g qmail -d /var/qmail qmails</command></userinput></screen>
    1919
    20 <para>Install qmail by running the following commands:</para>
     20<para>Install <application>qmail</application> by running the following commands:</para>
    2121
    22 <para><screen><userinput>patch -Np1 -i ../qmail-1.03.errno.patch &amp;&amp;
     22<screen><userinput><command>patch -Np1 -i ../qmail-1.03.errno.patch &amp;&amp;
    2323make setup check &amp;&amp;
    2424./config-fast `hostname` &amp;&amp;
     
    3030for mandir in 1 5 7 8; do mv /var/qmail/man/man$mandir/* \
    3131    /usr/man/man$mandir; done &amp;&amp;
    32 rm -rf /var/qmail/man</userinput></screen></para>
     32rm -rf /var/qmail/man</command></userinput></screen>
    3333</sect2>
  • server/mail/qmail/qmail-intro.xml

    r79f87f94 r547df0bc  
    11<sect2>
    2 <title>Introduction to qmail</title>
     2<title>Introduction to <application>qmail</application></title>
    33
    4 <screen>Download location (HTTP):       <ulink url="&qmail-download-http;"/>
    5 Download location (FTP):        <ulink url="&qmail-download-ftp;"/>
    6 Version used:                   &qmail-version;
    7 Package size:                   &qmail-size;
    8 Estimated Disk space required:  &qmail-buildsize;</screen>
    9 <screen>
    10 Additional downloads:
    11 <ulink url="ftp://moni.csi.hu/pub/glibc-2.3.1/qmail-1.03.errno.patch">qmail errno patch</ulink></screen>
     4<para>The <application>qmail</application> package contains Dan Bernstein's Mail Transport Agent
     5(MTA). <application>qmail</application> provides local and remote mail delivery/relaying.</para>
     6
     7<sect3><title>Package information</title>
     8<itemizedlist spacing='compact'>
     9<listitem><para>Download (HTTP): <ulink
     10url="&qmail-download-http;"/></para></listitem>
     11<listitem><para>Download (FTP): <ulink
     12url="&qmail-download-ftp;"/></para></listitem>
     13<listitem><para>Download size: &qmail-size;</para></listitem>
     14<listitem><para>Estimated Disk space required:
     15&qmail-buildsize;</para></listitem>
     16<listitem><para>Estimated build time:
     17&qmail-time;</para></listitem></itemizedlist>
     18</sect3>
     19
     20<sect3><title>Additional downloads</title>
     21<itemizedlist spacing='compact'>
     22<listitem><para>Required patch:
     23<ulink url="ftp://moni.csi.hu/pub/glibc-2.3.1/qmail-1.03.errno.patch">qmail
     24errno patch</ulink></para></listitem></itemizedlist>
     25</sect3>
    1226
    1327
    14 <para>The qmail package contains Dan Bernstein's Mail Transport Agent
    15 (MTA). qmail provides local and remote mail delivery/relaying.</para>
    16 
    1728</sect2>
  • server/mail/qmail/qmail.ent

    r79f87f94 r547df0bc  
    99<!ENTITY qmail-download-ftp "">
    1010<!ENTITY qmail-size "225 KB">
     11<!ENTITY qmail-time "">
Note: See TracChangeset for help on using the changeset viewer.