Changeset f7f0d44 for server/mail


Ignore:
Timestamp:
08/26/2002 10:23:32 PM (22 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, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
f3d2f8b
Parents:
fe8b8e9
Message:

editing cleanup in mail

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

Location:
server/mail
Files:
5 added
8 edited

Legend:

Unmodified
Added
Removed
  • server/mail/exim.xml

    rfe8b8e9 rf7f0d44  
    1 <sect1 id="exim" xreflabel="exim">
     1<sect1 id="exim" xreflabel="exim-&exim-version;">
    22<?dbhtml filename="exim.html" dir="server"?>
    3 <title>exim</title>
     3<title>exim-&exim-version;</title>
    44
    5 <para>TO BE DONE</para>
     5&exim-intro;
     6&exim-inst;
     7&exim-config;
     8&exim-exp;
     9&exim-desc;
    610
    711</sect1>
  • server/mail/exim/exim.ent

    rfe8b8e9 rf7f0d44  
    11<!ENTITY exim SYSTEM "../exim.xml">
     2<!ENTITY exim-intro SYSTEM "exim-intro.xml">
     3<!ENTITY exim-inst SYSTEM "exim-inst.xml">
     4<!ENTITY exim-desc SYSTEM "exim-desc.xml">
     5<!ENTITY exim-exp SYSTEM "exim-exp.xml">
     6<!ENTITY exim-config SYSTEM "exim-config.xml">
     7<!ENTITY exim-buildsize "7.7 MB">
     8<!ENTITY exim-version "4.10">
     9<!ENTITY exim-download-http "">
     10<!ENTITY exim-download-ftp "ftp://ftp.exim.org/pub/exim/exim4/exim-4.10.tar.bz2">
     11<!ENTITY exim-size "1.4 MB">
  • server/mail/qmail/qmail-config.xml

    rfe8b8e9 rf7f0d44  
    1212tcp-env /var/qmail/bin/qmail-smtpd" >> /etc/inetd.conf
    1313</userinput></screen></para>
    14 <para>Add:
    15 <userinput>sh -cf '/var/qmail/rc &'</userinput>
    16 to your boot scripts, so that the qmail daemons are restarted whenever
    17 your system reboots. Make sure you include the &.</para>
     14
     15<para>To automate the running of qmail, use following command to
     16create the init.d script:</para>
     17
     18<para><screen><userinput>
     19cat &gt; /etc/rc.d/init.d/qmail &lt;&lt; "EOF"
     20#!/bin/sh
     21# Begin $rc_base/init.d/qmail
     22
     23# Based on sysklogd script from LFS-3.1 and earlier.
     24# Rewritten by Gerard Beekmans  - gerard@linuxfromscratch.org
     25
     26source /etc/sysconfig/rc
     27source $rc_functions
     28
     29case "$1" in
     30
     31        start)
     32        echo "Starting Qmail..."
     33        /var/qmail/rc &
     34        ;;
     35
     36        stop)
     37        echo "Stopping Qmail..."
     38        killall qmail-send
     39        ;;
     40               
     41        restart)
     42        $0 stop
     43        sleep 1
     44        $0 start
     45        ;;
     46
     47        *)
     48        echo "Usage: $0 {start|stop|restart}"
     49        exit 1
     50        ;;
     51esac
     52
     53# End $rc_base/init.d/qmail
     54EOF
     55chmod 755 /etc/rc.d/init.d/qmail</userinput></screen></para>
     56
     57<para>Create the symbolic links to this file in the relevant rc.d directory with the following commands:
     58
     59<screen><userinput>cd /etc/rc.d/init.d &amp;&amp;
     60ln -sf ../init.d/qmail ../rc0.d/K25qmail &amp;&amp;
     61ln -sf ../init.d/qmail ../rc1.d/K25qmail &amp;&amp;
     62ln -sf ../init.d/qmail ../rc2.d/K25qmail &amp;&amp;
     63ln -sf ../init.d/qmail ../rc3.d/S35qmail &amp;&amp;
     64ln -sf ../init.d/qmail ../rc4.d/S35qmail &amp;&amp;
     65ln -sf ../init.d/qmail ../rc5.d/S35qmail &amp;&amp;
     66ln -sf ../init.d/qmail ../rc6.d/K25qmail</userinput></screen></para>
     67
    1868</sect3>
    1969
  • server/mail/qmail/qmail-intro.xml

    rfe8b8e9 rf7f0d44  
    22<title>Introduction to qmail</title>
    33
    4 <screen>Download location (FTP):       <ulink url="&qmail-download-ftp;"/>
     4<screen>Download location (HTTP):       <ulink url="&qmail-download-http;"/>
     5Download location (FTP):        <ulink url="&qmail-download-ftp;"/>
    56Version used:                   &qmail-version;
    67Package size:                   &qmail-size;
  • server/mail/sendmail/sendmail-config.xml

    rfe8b8e9 rf7f0d44  
    1414postmaster: root
    1515MAILER-DAEMON: root
    16 EOF
    17 sendmail -v -bi
     16EOF &amp;&amp;
     17cd /etc/mail &amp;&amp;
     18cp -R  /usr/src/sendmail-8.12.5/cf/* . &amp;&amp;
     19cp -R  /usr/src/sendmail-8.12.5/cf/cf/submit.mc . &amp;&amp;
     20cp -R  /usr/src/sendmail-8.12.5/cf/cf/sendmail.mc . &amp;&amp;
     21sendmail -v -bi &amp;&amp;
    1822/usr/sbin/sendmail -bs -bd -q1m
    1923</userinput></screen></para>
  • server/mail/sendmail/sendmail-desc.xml

    rfe8b8e9 rf7f0d44  
    1212<userinput>sendmail</userinput>,
    1313<userinput>vacation</userinput>,
    14 <userinput>praliases</userinput>,
    15 <userinput>mailstats</userinput>,
    16 and <userinput></userinput>.</para>
     14<userinput>praliases</userinput> and
     15<userinput>mailstats</userinput>.
     16</para>
    1717</sect2>
    1818<sect2><title>Description</title>
  • server/mail/sendmail/sendmail-intro.xml

    rfe8b8e9 rf7f0d44  
    22<title>Introduction to sendmail</title>
    33
    4 <screen>
     4<screen>Download location (HTTP):       <ulink url="&sendmail-download-http;"/>
    55Download location (FTP):        <ulink url="&sendmail-download-ftp;"/>
    66Version used:                   &sendmail-version;
     
    99
    1010<para>The sendmail package contains a Mail Transport Agent
    11 (MTA).  </para>
     11(MTA).</para>
    1212
    1313
  • server/mail/sendmail/sendmail.ent

    rfe8b8e9 rf7f0d44  
    66<!ENTITY sendmail-buildsize "12 MB">
    77<!ENTITY sendmail-version "8.12.5">
    8 <!ENTITY sendmail-download-ftp
    9 "ftp://ftp.sendmail.org/pub/sendmail/sendmail.8.12.5.tar.gz">
     8<!ENTITY sendmail-download-http "">
     9<!ENTITY sendmail-download-ftp "ftp://ftp.sendmail.org/pub/sendmail/sendmail.8.12.5.tar.gz">
    1010<!ENTITY sendmail-size "1.8 MB">
Note: See TracChangeset for help on using the changeset viewer.