Changeset 65e6ea9


Ignore:
Timestamp:
06/22/2004 08:13:40 PM (20 years ago)
Author:
Randy McMurchy <randy@…>
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, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
a0ea7df
Parents:
d3880c0
Message:

update to Sendmail-8.13.0

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rd3880c0 r65e6ea9  
    182182<!-- Chapter 21 -->                 
    183183<!ENTITY postfix-version              "2.1.1">
    184 <!ENTITY sendmail-version             "8.12.10">
     184<!ENTITY sendmail-version             "8.13.0">
    185185<!ENTITY exim-version                 "4.24">
    186186<!ENTITY qpopper-version              "4.0.5">
  • introduction/welcome/changelog.xml

    rd3880c0 r65e6ea9  
    1818
    1919<itemizedlist>
     20
     21<listitem><para>June 22nd, 2004 [randy]: Updated to Sendmail-8.13.00.</para></listitem>
    2022
    2123<listitem><para>June 22nd, 2004 [bdubbs]: Fixed test for files in profile
  • server/mail/sendmail.xml

    rd3880c0 r65e6ea9  
    77<!ENTITY sendmail-download-ftp "ftp://ftp.sendmail.org/pub/sendmail/sendmail.&sendmail-version;.tar.gz">
    88<!ENTITY sendmail-download-http "http://www.sendmail.org/ftp/sendmail.&sendmail-version;.tar.gz">
    9 <!ENTITY sendmail-size "1.8 MB">
    10 <!ENTITY sendmail-buildsize "13 MB">
     9<!ENTITY sendmail-size "2.0 MB">
     10<!ENTITY sendmail-buildsize "18 MB">
    1111<!ENTITY sendmail-time "0.43 SBU">
    1212
     
    2020<title>Introduction to <application>Sendmail</application></title>
    2121
    22 <para>The <application>Sendmail</application> package contains a Mail Transport Agent
    23 (<acronym>MTA</acronym>).</para>
     22<para>The <application>Sendmail</application> package contains a Mail
     23Transport Agent (<acronym>MTA</acronym>).</para>
    2424
    2525<sect3><title>Package information</title>
     
    3333
    3434<sect3><title><application>Sendmail</application> dependencies</title>
     35
    3536<sect4><title>Required</title>
    3637<para><xref linkend="db"/> and <xref linkend="procmail"/>
     38</para></sect4>
     39
     40<sect4><title>Optional</title>
     41<para><xref linkend="openssl"/>, <xref linkend="openldap"/>,
     42<xref linkend="tcpwrappers"/>, <xref linkend="pcre"/>,
     43<ulink url="http://www-dev.cites.uiuc.edu/ph/nph/">nph</ulink> and
     44<ulink url="http://asg.web.cmu.edu/sasl/">Cyrus SASL</ulink>
    3745</para></sect4>
    3846</sect3>
     
    4351<title>Installation of <application>Sendmail</application></title>
    4452
    45 <para>Before building <application>Sendmail</application>, we need to create users, groups and
    46 directories that sendmail uses with the following commands:</para>
     53<para>Before building <application>Sendmail</application>, create the users,
     54groups and directories that <application>Sendmail</application> requires
     55with the following commands:</para>
    4756
    4857<screen><userinput><command>groupadd smmsp &amp;&amp;
     
    5362mkdir /var/spool/mqueue</command></userinput></screen>
    5463
    55 <para>Install <application>Sendmail</application> with the following commands:</para>
     64<para>Install <application>Sendmail</application> with the following
     65commands:</para>
    5666
    5767<screen><userinput><command>cat &gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"
     
    6777cp generic-linux.mc sendmail.mc &amp;&amp;
    6878mkdir /etc/mail &amp;&amp;
    69 sh Build sendmail.mc &amp;&amp;
     79sh Build sendmail.cf &amp;&amp;
    7080sh Build install-cf &amp;&amp;
    7181cd ../../ &amp;&amp;
    7282sh Build install</command></userinput></screen>
     83
     84<para>Install the <application>Sendmail</application> Installation and
     85Operations Guide with the following commands:</para>
     86
     87<screen><userinput><command>cd doc/op &amp;&amp;
     88sed -i -e 's/groff/GROFF_NO_SGR=1 groff/' Makefile &amp;&amp;
     89make op.txt op.pdf &amp;&amp;
     90install -d -m 755 /usr/share/doc/sendmail/&sendmail-version; &amp;&amp;
     91install -m 644 op.ps op.txt op.pdf /usr/share/doc/sendmail/&sendmail-version; &amp;&amp;
     92cd ../../</command></userinput></screen>
    7393
    7494</sect2>
     
    81101</sect3>
    82102
    83 <sect3><title>Configuration Information</title>
     103<sect3><title>Configuration Commands</title>
    84104
    85105<screen><userinput><command>echo `hostname` > /etc/mail/local-host-names
     
    92112newaliases -v</command></userinput></screen>
    93113
    94 <para>To automate the running of Sendmail at startup, install the <filename>/etc/rc.d/init.d/sendmail</filename>
    95 init script included in the <xref linkend="intro-important-bootscripts"/> package.</para>
     114<para>To automate the running of <application>Sendmail</application> at
     115startup, install the <filename>/etc/rc.d/init.d/sendmail</filename>
     116init script included in the
     117<xref linkend="intro-important-bootscripts"/> package.</para>
    96118                                                                                                               
    97119<screen><userinput><command>make install-sendmail</command></userinput></screen>
    98120
    99 <note><para>The -qNm option to <command>sendmail</command>, where N is number of minutes, controls
    100 how often Sendmail will process the mail queue. A default of 5
    101 minutes is used in the init script. Individual workstation users may want to set
    102 this as low as 1 minute, large installations handling more mail may
     121<note><para>The -qNm option to <command>sendmail</command>, where N is number
     122of minutes, controls how often Sendmail will process the mail queue. A default
     123of 5 minutes is used in the init script. Individual workstation users may want
     124to set this as low as 1 minute, large installations handling more mail may
    103125want to set it higher.</para></note>
    104126
     
    110132
    111133<para>The <application>Sendmail</application> package contains
    112 <command>mail.local</command>,
    113 <command>rmail</command>,
     134<command>hoststat</command>,
     135<command>purgestat</command>,
    114136<command>smrsh</command>,
    115137<command>editmap</command>,
     
    126148<sect2><title>Description</title>
    127149
    128 <sect3><title>mail.local</title>
    129 <para><command>mail.local</command> appends its standard input to a user's mail
    130 file.</para></sect3>
     150<sect3><title>hoststat</title>
     151<para><command>hoststat</command> prints <application>Sendmail</application>'s
     152persistent host status.</para></sect3>
    131153
    132154<sect3><title>rmail</title>
    133 <para><command>rmail</command> interprets incoming mail received via
    134 <acronym>UUCP</acronym>.</para></sect3>
     155<para><command>purgestat</command> causes <application>Sendmail</application>
     156to clear (purge) all its host-status information.</para></sect3>
    135157
    136158<sect3><title>smrsh</title>
    137 <para><command>smrsh</command> is a restricted shell for Sendmail.</para></sect3>
     159<para><command>smrsh</command> is a restricted shell for
     160<application>Sendmail</application>.</para></sect3>
    138161
    139162<sect3><title>editmap</title>
    140 <para><command>editmap</command> queries and edits Sendmail map files.</para></sect3>
     163<para><command>editmap</command> queries and edits
     164<application>Sendmail</application> map files.</para></sect3>
    141165
    142166<sect3><title>makemap</title>
    143 <para><command>makemap</command> creates Sendmail map files.</para></sect3>
     167<para><command>makemap</command> creates
     168<application>Sendmail</application> map files.</para></sect3>
    144169
    145170<sect3><title>mailq</title>
    146 <para><command>mailq</command> prints a summary of waiting mail messages.</para></sect3>
     171<para><command>mailq</command> prints a summary of outbound mail messages
     172waiting for delivery.</para></sect3>
    147173
    148174<sect3><title>newaliases</title>
    149 <para><command>newaliases</command> rebuilds <filename>/etc/mail/aliases.db</filename>.
    150 </para></sect3>
     175<para><command>newaliases</command> rebuilds
     176<filename>/etc/mail/aliases.db</filename>.</para></sect3>
    151177
    152178<sect3><title>sendmail</title>
    153 <para><command>sendmail</command> is the Sendmail mail transport agent.</para></sect3>
     179<para><command>sendmail</command> is the <application>Sendmail</application>
     180mail transport agent.</para></sect3>
    154181
    155182<sect3><title>vacation</title>
     
    157184
    158185<sect3><title>praliases</title>
    159 <para><command>praliases</command> displays current Sendmail aliases.</para></sect3>
     186<para><command>praliases</command> displays current
     187<application>Sendmail</application> aliases.</para></sect3>
    160188
    161189<sect3><title>mailstats</title>
    162 <para><command>mailstats</command> displays Sendmail statistics.</para></sect3>
     190<para><command>mailstats</command> displays
     191<application>Sendmail</application> statistics.</para></sect3>
    163192
    164193</sect2>
Note: See TracChangeset for help on using the changeset viewer.