Author: dj
Date: 2005-07-31 15:05:02 -0600 (Sun, 31 Jul 2005)
New Revision: 4862
Modified:
trunk/BOOK/general.ent
trunk/BOOK/introduction/welcome/changelog.xml
trunk/BOOK/multimedia/libdriv/alsa-utils.xml
trunk/BOOK/server/mail/postfix.xml
Log:
Update Postfix instructions to 2.2.5, cleanup alsa-utils
Modified: trunk/BOOK/general.ent
===================================================================
--- trunk/BOOK/general.ent 2005-07-31 17:53:11 UTC (rev 4861)
+++ trunk/BOOK/general.ent 2005-07-31 21:05:02 UTC (rev 4862)
@@ -280,7 +280,7 @@
<!-- Chapter 22 -->
<!ENTITY courier-version "0.47">
<!ENTITY exim-version "4.52">
-<!ENTITY postfix-version "2.2.3">
+<!ENTITY postfix-version "2.2.5">
<!ENTITY qpopper-version "4.0.5">
<!ENTITY sendmail-version "8.13.4">
Modified: trunk/BOOK/introduction/welcome/changelog.xml
===================================================================
--- trunk/BOOK/introduction/welcome/changelog.xml 2005-07-31 17:53:11 UTC
(rev 4861)
+++ trunk/BOOK/introduction/welcome/changelog.xml 2005-07-31 21:05:02 UTC
(rev 4862)
@@ -25,8 +25,9 @@
<itemizedlist>
<listitem>
- <para>July 31st, 2005 [dj]: Updated bootscripts tarball and added
- the alsa dev.d helpers scripts.</para>
+ <para>July 31st, 2005 [dj]: Updated bootscripts tarball, added
+ alsa dev.d helper scripts, corrected SSL instructions for postfix,
+ and updated postfix to 2.2.5.</para>
</listitem>
<listitem>
Modified: trunk/BOOK/multimedia/libdriv/alsa-utils.xml
===================================================================
--- trunk/BOOK/multimedia/libdriv/alsa-utils.xml 2005-07-31 17:53:11 UTC
(rev 4861)
+++ trunk/BOOK/multimedia/libdriv/alsa-utils.xml 2005-07-31 21:05:02 UTC
(rev 4862)
@@ -95,9 +95,7 @@
<sect3 id="alsa-utils-init">
<title>Configuration Information</title>
- <para>Probably the easiest way to store mixer levels is to set and
- retrieve them using at boot and shutdown. We'll use a bootscript to
- store the values at shutdown.</para>
+ <para> Use a bootscript to store the values at shutdown.</para>
<indexterm zone="alsa-utils alsa-utils-init">
<primary sortas="f-alsa">alsa</primary>
@@ -111,8 +109,7 @@
<para>Note that all channels of your sound card are muted by default.
You can use the <command>alsamixer</command> program from
- <application>ALSA Utilities</application> (or any other
- OSS mixer) to change this.</para>
+ <application>ALSA Utilities</application> to change this.</para>
<para>The first time the dev.d script below is run, it will complain
that there is no state in <filename>/etc/asound.state</filename>.
@@ -123,11 +120,11 @@
<screen role="root"><userinput>touch /etc/asound.state &&
alsactl store</userinput></screen>
- <para>We will restore the volume using the stored settings and a
+ <para>The volumes will be restored using the saved settings by a
dev.d handler script that will execute when the device is detected
durring boot (when pluged in for USB devices). While still the
<systemitem class="username">root</systemitem> user, create the dev.d
- handler script with the following commands:</para>
+ script with the following commands:</para>
<screen role="root"><userinput>install -d -m755 /etc/dev.d/snd &&
cat >> /etc/dev.d/snd/alsa.dev << "EOF" &&
Modified: trunk/BOOK/server/mail/postfix.xml
===================================================================
--- trunk/BOOK/server/mail/postfix.xml 2005-07-31 17:53:11 UTC (rev 4861)
+++ trunk/BOOK/server/mail/postfix.xml 2005-07-31 21:05:02 UTC (rev 4862)
@@ -93,25 +93,18 @@
<application>Cyrus-SASL</application> arguments:</para>
<screen><userinput>make makefiles \
-CCARGS="-DHAS_SSL -DUSE_SASL_AUTH \
+CCARGS="-DUSE_SSL -DUSE_SASL_AUTH \
-I/usr/include/openssl -I/usr/include/sasl" \
-AUXLIBS="-L/usr/lib -R/usr/lib -lssl -lcrypto -lsasl2"</userinput></screen>
+AUXLIBS="-L/usr/lib -lssl -lcrypto -lsasl2"</userinput></screen>
<sect4>
<title>SSL/TLS Authentication</title>
- <para>To use SSL/TLS authentication with
- <application>Postfix</application>, you will first need to apply a
- patch available from <ulink
-
url="ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz"/>.
- Unzip the patch tarball, and apply it with the following
commands:</para>
-
-<screen><userinput>patch -p1 <
../pfixtls-0.8.18-2.1.3-0.9.7d/pfixtls.diff</userinput></screen>
-
- <para>You will need to pass the following values to the
+ <para>To use TLS authentication with postfix
+ you will need to pass the following values to the
<command>make makefiles</command> command:</para>
-<screen><literal>CCARGS="-DHAS_SSL -I/usr/include/openssl" \
+<screen><literal>CCARGS="-DUSE_SSL -I/usr/include/openssl" \
AUXLIBS="-L/usr/lib -lssl -lcrypto"</literal></screen>
<para>To use SSL or TLS you will also need
@@ -126,7 +119,7 @@
<application>Postfix</application>, use the following arguments:</para>
<screen><literal>CCARGS="-DUSE_SASL_AUTH -I/usr/include/sasl" \
-AUXLIBS="-L/usr/lib -R/usr/lib -lsasl2"</literal></screen>
+AUXLIBS="-L/usr/lib -lsasl2"</literal></screen>
</sect4>
@@ -173,7 +166,7 @@
<application>Postfix</application>, use the following
arguments:</para>
-<screen><literal>CCARGS=-DHAS_CDB AUXLIBS=/usr/lib/libcdb.a</literal></screen>
+<screen><literal>CCARGS=-DHAS_CDB
AUXLIBS=<replaceable>[/path/to/CDB]/</replaceable>libcdb.a</literal></screen>
</sect4>
@@ -199,7 +192,7 @@
<para>Install <application>Postfix</application> by running the
following commands:</para>
-<screen role="root"><userinput>make</userinput></screen>
+<screen><userinput>make</userinput></screen>
<para>This package does not come with a test suite.</para>
--
http://linuxfromscratch.org/mailman/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page