Changeset 113bb709


Ignore:
Timestamp:
03/03/2005 05:40:08 AM (19 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:
451ae882
Parents:
1787ccd
Message:

Rearranged the note to add dependencies and added hooks to OpenLDAP to the Sendmail instructions

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r1787ccd r113bb709  
    1 <!ENTITY day          "02">
     1<!ENTITY day          "03">
    22<!ENTITY month        "03">
    33<!ENTITY year         "2005">
    44<!ENTITY version      "svn-&year;&month;&day;">
    5 <!ENTITY releasedate  "March &day;nd, &year;">
     5<!ENTITY releasedate  "March &day;rd, &year;">
    66<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    77<!ENTITY blfs-version "cvs">                  <!-- cvs|[release #] -->
  • introduction/welcome/changelog.xml

    r1787ccd r113bb709  
    2222
    2323<itemizedlist>
     24
     25<listitem><para>March 3rd, 2005 [randy]: Rearranged the note to build
     26dependencies and added OpenLDAP hooks to the Sendmail
     27instructions.</para></listitem>
    2428
    2529<listitem><para>March 2nd, 2005 [randy]: Added 'status' option to the
  • server/mail/sendmail.xml

    r1787ccd r113bb709  
    7676mkdir /var/spool/mqueue</command></userinput></screen>
    7777
     78<para><emphasis>Note:</emphasis> See the source tree
     79<filename>sendmail/README</filename> file for information on linking optional
     80packages into the build. Use the example below, which adds support for
     81<application>tcpwrappers</application>, <acronym>SASL</acronym>,
     82Start<acronym>TLS</acronym>
     83(<application>Open<acronym>SSL</acronym></application>) and
     84<application>Open<acronym>LDAP</acronym></application>, as a starting point.
     85Of course, modify it to suit your particular needs.</para>
     86
     87<screen><userinput><command>cat &gt;&gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"</command>
     88APPENDDEF(`confENVDEF',`-DSTARTTLS -DTCPWRAPPERS -DSASL -DLDAPMAP')
     89APPENDDEF(`confLIBS', `-lssl -lcrypto -lwrap -lsasl2 -lldap -llber')
     90APPENDDEF(`confINCDIRS', `-I/usr/include/sasl')
     91<command>EOF</command></userinput></screen>
     92
    7893<para>Install <application>Sendmail</application> with the following
    7994commands:</para>
    8095
    81 <screen><userinput><command>cat &gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"</command>
     96<screen><userinput><command>cat &gt;&gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"</command>
    8297define(`confMANGRP',`root')
    8398define(`confMANOWN',`root')
     
    109124install -v -m444 vacation/vacation.1   /usr/share/man/man1</command></userinput></screen>
    110125
    111 <para><emphasis>Note:</emphasis> See the source tree
    112 <filename>sendmail/README</filename> file for information on linking optional
    113 packages into the build. Use the example below, which adds support for
    114 <application>tcpwrappers</application>, <acronym>SASL</acronym> and
    115 Start<acronym>TLS</acronym>, as a starting point. Of course, modify it to suit
    116 your particular needs.</para>
    117 
    118 <screen><userinput><command>cat &gt;&gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"</command>
    119 APPENDDEF(`confENVDEF',`-DSTARTTLS -DTCPWRAPPERS -DSASL')
    120 APPENDDEF(`confLIBS', `-lssl -lcrypto -lwrap -lsasl2')
    121 APPENDDEF(`confINCDIRS', `-I/usr/include/sasl')
    122 <command>EOF</command></userinput></screen>
    123 
    124126<para>Install the <application>Sendmail</application> Installation and
    125127Operations Guide with the following commands:</para>
Note: See TracChangeset for help on using the changeset viewer.