Patch subject is complete summary.

# HG changeset patch
# User Kevin McCarthy <ke...@8t8.us>
# Date 1478734907 28800
#      Wed Nov 09 15:41:47 2016 -0800
# Node ID 326fac112b39ddfde430e80a6ee58fed74c0b9e0
# Parent  cd0918ebda17a496378823ea7fd1d2675c270e89
Compress: remove extra fluff from manual.

diff --git a/doc/manual.xml.head b/doc/manual.xml.head
--- a/doc/manual.xml.head
+++ b/doc/manual.xml.head
@@ -8690,91 +8690,23 @@
       <para>
         Encrypted files are decrypted into temporary files which are
         stored in the <link linkend="tmpdir">$tmpdir</link> directory.
         This could be a security risk.
       </para>
     </sect3>
   </sect2>
 
-  <sect2 id="compress-muttrc">
-    <title>Muttrc</title>
-<screen>
-<emphasis role="comment"># Example Mutt config file for the compress feature.
-
-# This feature adds three hooks to Mutt which allow it to
-# work with compressed, or encrypted, mailboxes.
-
-# The hooks are of the form:
-#       open-hook   regexp &quot;shell-command&quot;
-#       close-hook  regexp &quot;shell-command&quot;
-#       append-hook regexp &quot;shell-command&quot;
-
-# The 'append-hook' is optional.
-
-# Handler for gzip compressed mailboxes</emphasis>
-open-hook   '\.gz$'  &quot;gzip -cd  '%f' &gt;  '%t'&quot;
-close-hook  '\.gz$'  &quot;gzip -c   '%t' &gt;  '%f'&quot;
-append-hook '\.gz$'  &quot;gzip -c   '%t' &gt;&gt; '%f'&quot;
-
-<emphasis role="comment"># Handler for bzip2 compressed mailboxes</emphasis>
-open-hook   '\.bz2$' &quot;bzip2 -cd '%f' &gt;  '%t'&quot;
-close-hook  '\.bz2$' &quot;bzip2 -c  '%t' &gt;  '%f'&quot;
-append-hook '\.bz2$' &quot;bzip2 -c  '%t' &gt;&gt; '%f'&quot;
-
-<emphasis role="comment"># Handler for xz compressed mailboxes</emphasis>
-open-hook   '\.xz$'  &quot;xz    -cd '%f' &gt;  '%t'&quot;
-close-hook  '\.xz$'  &quot;xz    -c  '%t' &gt;  '%f'&quot;
-append-hook '\.xz$'  &quot;xz    -c  '%t' &gt;&gt; '%f'&quot;
-
-<emphasis role="comment"># Handler for pgp encrypted mailboxes
-# PGP does not support appending to an encrypted file</emphasis>
-open-hook   '\.pgp$' &quot;pgp -f &lt; '%f' &gt; '%t'&quot;
-close-hook  '\.pgp$' &quot;pgp -fe YourPgpUserIdOrKeyId &lt; '%t' &gt; '%f'&quot;
-
-<emphasis role="comment"># Handler for gpg encrypted mailboxes
-# gpg does not support appending to an encrypted file</emphasis>
-open-hook   '\.gpg$' &quot;gpg --decrypt &lt; '%f' &gt; '%t'&quot;
-close-hook  '\.gpg$' &quot;gpg --encrypt --recipient YourGpgUserIdOrKeyId &lt; '%t' &gt; '%f'&quot;
-
-<emphasis role="comment"># vim: syntax=muttrc</emphasis>
-</screen>
-  </sect2>
-
-  <sect2 id="compress-see-also">
-    <title>See Also</title>
-
-    <itemizedlist>
-      <listitem><para><link linkend="compile-time-features">Compile-Time Features</link></para></listitem>
-      <listitem><para><link linkend="regexp">Regular Expressions</link></para></listitem>
-      <listitem><para><link linkend="tmpdir">$tmpdir</link></para></listitem>
-      <listitem><para><link linkend="mbox-type">$mbox_type</link></para></listitem>
-      <listitem><para><link linkend="save-empty">$save_empty</link></para></listitem>
-      <listitem><para><link linkend="folder-hook">folder-hook</link></para></listitem>
-    </itemizedlist>
-  </sect2>
-
   <sect2 id="compress-known-bugs">
     <title>Known Bugs</title>
 
     <itemizedlist>
       <listitem><para>The Compressed Folder hooks cannot deal with filenames that contains quotes/apostrophes.</para></listitem>
     </itemizedlist>
   </sect2>
-
-  <sect2 id="compress-credits">
-    <title>Credits</title>
-    <itemizedlist>
-    <listitem><para>Roland Rosenfeld <email>rol...@spinnaker.de</email></para></listitem>
-    <listitem><para>Alain Penders <email>al...@finale-dev.com</email></para></listitem>
-    <listitem><para>Christoph <quote>Myon</quote> Berg <email>m...@debian.org</email></para></listitem>
-    <listitem><para>Evgeni Golov <email>evg...@debian.org</email></para></listitem>
-    <listitem><para>Richard Russon <email>r...@flatcap.org</email></para></listitem>
-    </itemizedlist>
-  </sect2>
 </sect1>
 </chapter>
 
 <chapter id="security">
 <title>Security Considerations</title>
 
 <para>
 First of all, Mutt contains no security holes included by intention but

Reply via email to