[deployment-guide/comm-rel: 243/727] modified Email chapter

Jaromir Hradilek jhradile at fedoraproject.org
Tue Oct 19 12:44:57 UTC 2010


commit 90ce5480ade405dc990ff7d0e5f7a25be4008081
Author: Martin Prpic <mprpic at redhat.com>
Date:   Tue Aug 3 13:11:03 2010 +0200

    modified Email chapter

 en-US/Email.xml |  206 +++++++++++++++++++++++++++---------------------------
 1 files changed, 103 insertions(+), 103 deletions(-)
---
diff --git a/en-US/Email.xml b/en-US/Email.xml
index a5c9d39..4bb2206 100644
--- a/en-US/Email.xml
+++ b/en-US/Email.xml
@@ -230,7 +230,109 @@
   <section
     id="s1-email-mta">
     <title>Mail Transport Agents</title>
-    <para>&MAJOROS; includes two primary MTAs: Sendmail and Postfix. Postfix is configured as the default MTA, although it is easy to switch the default MTA to Sendmail.</para>
+    <para>&MAJOROS; includes two primary MTAs: Postfix and Sendmail. Postfix is configured as the default MTA, although it is easy to switch the default MTA to Sendmail.</para>
+    <section
+      id="s2-email-mta-postfix">
+      <title>Postfix</title>
+      <indexterm
+        significance="normal">
+        <primary>email</primary>
+        <secondary>Postfix</secondary>
+      </indexterm>
+      <indexterm
+        significance="normal">
+        <primary>Postfix</primary>
+      </indexterm>
+      <para>Originally developed at IBM by security expert and programmer Wietse Venema, Postfix is a Sendmail-compatible MTA that is designed to be secure, fast, and easy to configure.</para>
+      <para>To improve security, Postfix uses a modular design, where small processes with limited privileges are launched by a <firstterm>master</firstterm> daemon. The smaller, less privileged processes perform very specific tasks related to the various stages of mail delivery and run in a change rooted environment to limit the effects of attacks.</para>
+      <para>Configuring Postfix to accept network connections from hosts other than the local computer takes only a few minor changes in its configuration file. Yet for those with more complex needs, Postfix provides a variety of configuration options, as well as third party add ons that make it a very versatile and full-featured MTA.</para>
+      <para>The configuration files for Postfix are human readable and support upward of 250 directives. Unlike Sendmail, no macro processing is required for changes to take effect and the majority of the most commonly used options are described in the heavily commented files.</para>
+      <!-- silas: Postfix is default in RHEL6
+      <important>
+        <title>Important</title>
+        <para>Before using Postfix, the default MTA must be switched from Sendmail.</para>
+      </important>-->
+      <section
+        id="s3-email-mta-postfix-default">
+        <title>The Default Postfix Installation</title>
+        <indexterm
+          significance="normal">
+          <primary>Postfix</primary>
+          <secondary>default installation</secondary>
+        </indexterm>
+        <para>The Postfix executable is <filename>/usr/sbin/postfix</filename>. This daemon launches all related processes needed to handle mail delivery.</para>
+        <para>Postfix stores its configuration files in the <filename>/etc/postfix/</filename> directory. The following is a list of the more commonly used files:</para>
+        <itemizedlist>
+          <listitem>
+            <para>
+              <filename>access</filename> — Used for access control, this file specifies which hosts are allowed to connect to Postfix.</para>
+          </listitem>
+          <listitem>
+            <para>
+              <filename>aliases</filename> — A configurable list required by the mail protocol.</para>
+          </listitem>
+          <listitem>
+            <para>
+              <filename>main.cf</filename> — The global Postfix configuration file. The majority of configuration options are specified in this file.</para>
+          </listitem>
+          <listitem>
+            <para>
+              <filename>master.cf</filename> — Specifies how Postfix interacts with various processes to accomplish mail delivery.</para>
+          </listitem>
+          <listitem>
+            <para>
+              <filename>transport</filename> — Maps email addresses to relay hosts.</para>
+          </listitem>
+        </itemizedlist>
+        <important>
+          <title>Important</title>
+          <para>The default <filename>/etc/postfix/main.cf</filename> file does not allow Postfix to accept network connections from a host other than the local computer. For instructions on configuring Postfix as a server for other clients, refer to <xref
+              linkend="s3-email-mta-postfix-conf"/>.</para>
+        </important>
+        <para>When changing some options within files in the <filename>/etc/postfix/</filename> directory, it may be necessary to restart the <command>postfix</command> service for the changes to take effect. The easiest way to do this is to type the following command:</para>
+        <screen>
+<command>/sbin/service postfix restart</command>
+        </screen>
+      </section>
+      <section
+        id="s3-email-mta-postfix-conf">
+        <title>Basic Postfix Configuration</title>
+        <para>By default, Postfix does not accept network connections from any host other than the local host. Perform the following steps as root to enable mail delivery for other hosts on the network:</para>
+        <itemizedlist>
+          <listitem>
+            <para>Edit the <filename>/etc/postfix/main.cf</filename> file with a text editor, such as <command>vi</command>.</para>
+          </listitem>
+          <listitem>
+            <para>Uncomment the <command>mydomain</command> line by removing the hash mark (<command>#</command>), and replace <replaceable>domain.tld</replaceable> with the domain the mail server is servicing, such as <command>example.com</command>.</para>
+          </listitem>
+          <listitem>
+            <para>Uncomment the <command>myorigin = $mydomain</command> line.</para>
+          </listitem>
+          <listitem>
+            <para>Uncomment the <command>myhostname</command> line, and replace <replaceable>host.domain.tld</replaceable> with the hostname for the machine.</para>
+          </listitem>
+          <listitem>
+            <para>Uncomment the <command>mydestination = $myhostname, localhost.$mydomain</command> line.</para>
+          </listitem>
+          <listitem>
+            <para>Uncomment the <command>mynetworks</command> line, and replace <replaceable>168.100.189.0/28</replaceable> with a valid network setting for hosts that can connect to the server.</para>
+          </listitem>
+          <listitem>
+            <para>Uncomment the <command>inet_interfaces = all</command> line.</para>
+          </listitem>
+					<!-- RHEL5: Fix BZ#466239: insert the following line to make this config work-->
+          <listitem>
+            <para>Comment the <command>inet_interfaces = localhost</command> line.</para>
+          </listitem>
+          <listitem>
+            <para>Restart the <command>postfix</command> service.</para>
+          </listitem>
+        </itemizedlist>
+        <para>Once these steps are complete, the host accepts outside emails for delivery.</para>
+        <para>Postfix has a large assortment of configuration options. One of the best ways to learn how to configure Postfix is to read the comments within <filename>/etc/postfix/main.cf</filename>. Additional resources including information about LDAP and SpamAssassin integration are available online at <ulink
+            url="http://www.postfix.org/">http://www.postfix.org/</ulink>.</para>
+      </section>
+    </section>
     <section
       id="s2-email-mta-sendmail">
       <title>Sendmail</title>
@@ -451,108 +553,6 @@ FEATURE('ldap_routing')dnl
       </section>
     </section>
     <section
-      id="s2-email-mta-postfix">
-      <title>Postfix</title>
-      <indexterm
-        significance="normal">
-        <primary>email</primary>
-        <secondary>Postfix</secondary>
-      </indexterm>
-      <indexterm
-        significance="normal">
-        <primary>Postfix</primary>
-      </indexterm>
-      <para>Originally developed at IBM by security expert and programmer Wietse Venema, Postfix is a Sendmail-compatible MTA that is designed to be secure, fast, and easy to configure.</para>
-      <para>To improve security, Postfix uses a modular design, where small processes with limited privileges are launched by a <firstterm>master</firstterm> daemon. The smaller, less privileged processes perform very specific tasks related to the various stages of mail delivery and run in a change rooted environment to limit the effects of attacks.</para>
-      <para>Configuring Postfix to accept network connections from hosts other than the local computer takes only a few minor changes in its configuration file. Yet for those with more complex needs, Postfix provides a variety of configuration options, as well as third party add ons that make it a very versatile and full-featured MTA.</para>
-      <para>The configuration files for Postfix are human readable and support upward of 250 directives. Unlike Sendmail, no macro processing is required for changes to take effect and the majority of the most commonly used options are described in the heavily commented files.</para>
-      <!-- silas: Postfix is default in RHEL6
-      <important>
-        <title>Important</title>
-        <para>Before using Postfix, the default MTA must be switched from Sendmail.</para>
-      </important>-->
-      <section
-        id="s3-email-mta-postfix-default">
-        <title>The Default Postfix Installation</title>
-        <indexterm
-          significance="normal">
-          <primary>Postfix</primary>
-          <secondary>default installation</secondary>
-        </indexterm>
-        <para>The Postfix executable is <filename>/usr/sbin/postfix</filename>. This daemon launches all related processes needed to handle mail delivery.</para>
-        <para>Postfix stores its configuration files in the <filename>/etc/postfix/</filename> directory. The following is a list of the more commonly used files:</para>
-        <itemizedlist>
-          <listitem>
-            <para>
-              <filename>access</filename> — Used for access control, this file specifies which hosts are allowed to connect to Postfix.</para>
-          </listitem>
-          <listitem>
-            <para>
-              <filename>aliases</filename> — A configurable list required by the mail protocol.</para>
-          </listitem>
-          <listitem>
-            <para>
-              <filename>main.cf</filename> — The global Postfix configuration file. The majority of configuration options are specified in this file.</para>
-          </listitem>
-          <listitem>
-            <para>
-              <filename>master.cf</filename> — Specifies how Postfix interacts with various processes to accomplish mail delivery.</para>
-          </listitem>
-          <listitem>
-            <para>
-              <filename>transport</filename> — Maps email addresses to relay hosts.</para>
-          </listitem>
-        </itemizedlist>
-        <important>
-          <title>Important</title>
-          <para>The default <filename>/etc/postfix/main.cf</filename> file does not allow Postfix to accept network connections from a host other than the local computer. For instructions on configuring Postfix as a server for other clients, refer to <xref
-              linkend="s3-email-mta-postfix-conf"/>.</para>
-        </important>
-        <para>When changing some options within files in the <filename>/etc/postfix/</filename> directory, it may be necessary to restart the <command>postfix</command> service for the changes to take effect. The easiest way to do this is to type the following command:</para>
-        <screen>
-<command>/sbin/service postfix restart</command>
-        </screen>
-      </section>
-      <section
-        id="s3-email-mta-postfix-conf">
-        <title>Basic Postfix Configuration</title>
-        <para>By default, Postfix does not accept network connections from any host other than the local host. Perform the following steps as root to enable mail delivery for other hosts on the network:</para>
-        <itemizedlist>
-          <listitem>
-            <para>Edit the <filename>/etc/postfix/main.cf</filename> file with a text editor, such as <command>vi</command>.</para>
-          </listitem>
-          <listitem>
-            <para>Uncomment the <command>mydomain</command> line by removing the hash mark (<command>#</command>), and replace <replaceable>domain.tld</replaceable> with the domain the mail server is servicing, such as <command>example.com</command>.</para>
-          </listitem>
-          <listitem>
-            <para>Uncomment the <command>myorigin = $mydomain</command> line.</para>
-          </listitem>
-          <listitem>
-            <para>Uncomment the <command>myhostname</command> line, and replace <replaceable>host.domain.tld</replaceable> with the hostname for the machine.</para>
-          </listitem>
-          <listitem>
-            <para>Uncomment the <command>mydestination = $myhostname, localhost.$mydomain</command> line.</para>
-          </listitem>
-          <listitem>
-            <para>Uncomment the <command>mynetworks</command> line, and replace <replaceable>168.100.189.0/28</replaceable> with a valid network setting for hosts that can connect to the server.</para>
-          </listitem>
-          <listitem>
-            <para>Uncomment the <command>inet_interfaces = all</command> line.</para>
-          </listitem>
-					<!-- RHEL5: Fix BZ#466239: insert the following line to make this config work-->
-          <listitem>
-            <para>Comment the <command>inet_interfaces = localhost</command> line.</para>
-          </listitem>
-          <listitem>
-            <para>Restart the <command>postfix</command> service.</para>
-          </listitem>
-        </itemizedlist>
-        <para>Once these steps are complete, the host accepts outside emails for delivery.</para>
-        <para>Postfix has a large assortment of configuration options. One of the best ways to learn how to configure Postfix is to read the comments within <filename>/etc/postfix/main.cf</filename>. Additional resources including information about LDAP and SpamAssassin integration are available online at <ulink
-            url="http://www.postfix.org/">http://www.postfix.org/</ulink>.</para>
-      </section>
-    </section>
-    <section
       id="s2-email-mta-fetchmail">
       <title>Fetchmail</title>
       <indexterm


More information about the docs-commits mailing list