doc-el commit 999:6529c37a7cfc - Replaced mail chapter with rev....

freebsd-doc-el at lists.hellug.gr freebsd-doc-el at lists.hellug.gr
Sun Nov 9 06:50:05 EET 2008


changeset: 999:6529c37a7cfc
user:      sonic at theone.dyndns.org
date:      2008-11-04 07:32 +0200
details:   http://hg.hellug.gr/freebsd/doc-el/?cmd=changeset;node=6529c37a7cfc

description:
	Replaced mail chapter with rev. 1.138

diffstat:

1 file changed, 7 insertions(+), 93 deletions(-)
el_GR.ISO8859-7/books/handbook/mail/chapter.sgml |  100 +---------------------

diffs (145 lines):

diff -r fd8d96da0ea9 -r 6529c37a7cfc el_GR.ISO8859-7/books/handbook/mail/chapter.sgml
--- a/el_GR.ISO8859-7/books/handbook/mail/chapter.sgml	Tue Nov 04 00:53:49 2008 +0200
+++ b/el_GR.ISO8859-7/books/handbook/mail/chapter.sgml	Tue Nov 04 07:32:14 2008 +0200
@@ -7,7 +7,7 @@
   $FreeBSD: doc/el_GR.ISO8859-7/books/handbook/mail/chapter.sgml,v 1.2 2008/01/14 14:19:46 keramida Exp $
 
   %SOURCE%	en_US.ISO8859-1/books/handbook/mail/chapter.sgml
-  %SRCID%	1.1
+  %SRCID%	1.138
 
 -->
 
@@ -716,12 +716,6 @@
     <sect2 id="mail-disable-sendmail">
       <title>Disable <application>sendmail</application></title>
 
-      <para>The procedure used to start
-	<application>sendmail</application> changed significantly
-	between 4.5-RELEASE, 4.6-RELEASE, and later releases.
-	Therefore, the procedure used to disable it is subtly
-	different.</para>
-
 	<warning>
 	  <para>If you disable <application>sendmail</application>'s
 	    outgoing mail service, it is important that you replace it
@@ -738,49 +732,6 @@
 	    never be delivered.</para>
 	</warning>
 
-      <sect3>
-	<title>FreeBSD 4.5-STABLE before 2002/4/4 and Earlier
-	  (Including 4.5-RELEASE and Earlier)</title>
-
-	<para>Enter:</para>
-
-	  <programlisting>sendmail_enable="NO"</programlisting>
-
-	  <para>into <filename>/etc/rc.conf</filename>.  This will disable
-	  <application>sendmail</application>'s incoming mail service,
-	  but if <filename>/etc/mail/mailer.conf</filename> (see below)
-	  is not changed, <application>sendmail</application> will
-	  still be used to send e-mail.</para>
-      </sect3>
-
-      <sect3>
-	<title>FreeBSD 4.5-STABLE after 2002/4/4
-	  (Including 4.6-RELEASE and Later)</title>
-
-	<para>In order to completely disable
-	  <application>sendmail</application>, including the outgoing
-	  mail service, you must use</para>
-
-	  <programlisting>sendmail_enable="NONE"</programlisting>
-
-	  <para>in <filename>/etc/rc.conf.</filename></para>
-
-	<para>If you only want to disable
-	  <application>sendmail</application>'s incoming mail service,
-	  you should set</para>
-
-	  <programlisting>sendmail_enable="NO"</programlisting>
-
-	<para>in <filename>/etc/rc.conf</filename>.  However, if
-	  incoming mail is disabled, local delivery will still
-	  function.  More information on 
-	  <application>sendmail</application>'s startup options is
-	  available from the &man.rc.sendmail.8; manual page.</para>
-      </sect3>
-
-      <sect3>
-	<title>FreeBSD 5.0-STABLE and Later</title>
-
 	<para>In order to completely disable
 	  <application>sendmail</application>, including the outgoing
 	  mail service, you must use</para>
@@ -801,55 +752,19 @@
 	<para>in <filename>/etc/rc.conf</filename>.  More information on
 	  <application>sendmail</application>'s startup options is
 	  available from the &man.rc.sendmail.8; manual page.</para>
-      </sect3>
     </sect2>
 
     <sect2>
       <title>Running Your New MTA on Boot</title>
 
-      <para>You may have a choice of two methods for running your
-	new MTA on boot, again depending on what version of FreeBSD
-	you are running.</para>
+      <para>The new MTA can be started during boot by adding a
+	configuration line to <filename>/etc/rc.conf</filename>
+	like the following example for postfix:</para>
 
-      <sect3>
-	<title>FreeBSD 4.5-STABLE before 2002/4/11
-	  (Including 4.5-RELEASE and Earlier)</title>
+      <screen>&prompt.root; echo '<replaceable>postfix</replaceable>_enable=<quote>YES</quote>' &gt;&gt; /etc/rc.conf</screen>
 
-	<para>Add a script to
-	  <filename>/usr/local/etc/rc.d/</filename> that
-	  ends in <filename>.sh</filename> and is executable by
-	  <username>root</username>.  The script should accept <literal>start</literal> and
-	  <literal>stop</literal> parameters.  At startup time the
-	  system scripts will execute the command</para>
-
-	<programlisting>/usr/local/etc/rc.d/supermailer.sh start</programlisting>
-
-	<para>which you can also use to manually start the server.  At
-	  shutdown time, the system scripts will use the
-	  <literal>stop</literal> option, running the command</para>
-
-	<programlisting>/usr/local/etc/rc.d/supermailer.sh stop</programlisting>
-
-	<para>which you can also use to manually stop the server
-	  while the system is running.</para>
-
-      </sect3>
-
-      <sect3>
-	<title>FreeBSD 4.5-STABLE after 2002/4/11
-	  (Including 4.6-RELEASE and Later)</title>
-
-	<para>With later versions of FreeBSD, you can use the
-	  above method or you can set</para>
-
-	<programlisting>mta_start_script="filename"</programlisting>
-
-	<para>in <filename>/etc/rc.conf</filename>, where
-	  <replaceable>filename</replaceable> is the name of some
-	  script that you want executed at boot to start your
-	  MTA.</para>
-      </sect3>
-
+      <para>The MTA will now be automatically started during
+	boot.</para>
     </sect2>
 
     <sect2>
@@ -2327,7 +2242,6 @@
 <!--
      Local Variables:
      mode: sgml
-     coding: iso-8859-7
      sgml-declaration: "../chapter.decl"
      sgml-indent-data: t
      sgml-omittag: nil




More information about the Freebsd-doc-el mailing list