Changeset 3b00d20


Ignore:
Timestamp:
03/02/2014 12:40:47 AM (10 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 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:
41ddd5f
Parents:
620b04a
Message:

Restore sendmail

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

Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • general.ent

    r620b04a r3b00d20  
    7070<!-- End LFS versions -->
    7171
    72 <!ENTITY blfs-bootscripts-version     "20131023">
     72<!ENTITY blfs-bootscripts-version     "20140301">
    7373<!ENTITY blfs-bootscripts-download    "&downloads-root;/blfs-bootscripts-&blfs-bootscripts-version;.tar.bz2">
    7474
     
    505505<!ENTITY exim-version                 "4.82">
    506506<!ENTITY postfix-version              "2.11.0">
     507<!ENTITY sendmail-version             "8.14.8">
    507508
    508509<!-- Chapter 22 -->
  • introduction/welcome/changelog.xml

    r620b04a r3b00d20  
    4949      <itemizedlist>
    5050        <listitem>
     51          <para>[bdubbs] - Restore and fix sendmail-8.14.8. Fixes
     52          <ulink url="&blfs-ticket-root;4721">#4721</ulink>.</para>
     53        </listitem>
     54        <listitem>
    5155          <para>[bdubbs] - Move vsftpd 'empty' directory to FHS
    5256          compliant location. Fixes
  • server/mail/mail.xml

    r620b04a r3b00d20  
    2626  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="exim.xml"/>
    2727  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="postfix.xml"/>
     28  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sendmail.xml"/>
    2829
    2930</chapter>
  • server/mail/sendmail.xml

    r620b04a r3b00d20  
    3535    Transport Agent (MTA).</para>
    3636
    37     &lfs74_built;
     37    &lfs75_checked;
    3838
    3939    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    102102<screen><userinput>cat &gt;&gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"
    103103<literal>APPENDDEF(`confENVDEF',`-DSTARTTLS -DSASL -DLDAPMAP')
    104 APPENDDEF(`confLIBS', `-lssl -lcrypto -lsasl2 -lldap -llber')
     104APPENDDEF(`confLIBS', `-lssl -lcrypto -lsasl2 -lldap -llberi -ldb')
    105105APPENDDEF(`confINCDIRS', `-I/usr/include/sasl')</literal>
    106106EOF</userinput></screen>
     
    115115define(`confUBINGRP',`root')
    116116define(`confUBINOWN',`root')
    117 define(`confMANROOT', `/usr/share/man/man')</literal>
     117</literal>
    118118EOF
     119
     120sed -i 's|/usr/man/man|/usr/share/man/man|' \
     121    devtools/OS/Linux           &amp;&amp;
    119122
    120123sed -i -r "s/^# if (DB.*)$/# if (\1) || DB_VERSION_MAJOR >= 5/" \
     
    185188    <para><command>cat &gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"</command>:
    186189    This creates a configuration file changing some of the default settings.</para>
     190
     191    <para><command>sed ... devtools/OS/Linux</command>: The site.config.m4
     192    does not honor a change to the man directory, so fix it in the OS
     193    definitions.</para>
    187194
    188195    <para><command>sed ... include/sm/bdb.h</command>: This allows sendmail to
     
    240247      <filename class='directory'>/etc/mail</filename> as follows:</para>
    241248
    242 <screen role="root"><userinput>m4 m4/cf.m4 sendmail.mc > sendmail.cf</userinput></screen>
     249<screen role="root"><userinput>cd /etc/mail &amp;&amp;
     250m4 m4/cf.m4 sendmail.mc > sendmail.cf</userinput></screen>
    243251
    244252      <para>A full explanation of the files to modify, and the available
Note: See TracChangeset for help on using the changeset viewer.