source: basicnet/mailnews/mutt.xml@ 7e7cb4a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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
Last change on this file since 7e7cb4a was 7e7cb4a, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Reverted last commit made by error.

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

  • Property mode set to 100644
File size: 6.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY mutt-download-http "http://gd.tuwien.ac.at/infosys/mail/mutt/mutt-&mutt-version;.tar.gz">
8 <!ENTITY mutt-download-ftp "ftp://ftp.mutt.org/mutt/mutt-&mutt-version;.tar.gz">
9 <!ENTITY mutt-md5sum "710bd56d3c4c4bcd1403bc4e053f7476">
10 <!ENTITY mutt-size "2.6 MB">
11 <!ENTITY mutt-buildsize "16.9 MB">
12 <!ENTITY mutt-time "0.35 SBU">
13]>
14
15<sect1 id="mutt" xreflabel="Mutt-&mutt-version;">
16 <?dbhtml filename="mutt.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Mutt-&mutt-version;</title>
24
25 <sect2 role="package">
26 <title>Introduction to Mutt</title>
27
28 <para>The <application>Mutt</application> package contains a Mail User Agent.
29 This is useful for reading, writing, replying to, saving, and deleting your email.</para>
30
31 <bridgehead renderas="sect3">Package Information</bridgehead>
32 <itemizedlist spacing='compact'>
33 <listitem>
34 <para>Download (HTTP): <ulink url="&mutt-download-http;"/></para>
35 </listitem>
36 <listitem>
37 <para>Download (FTP): <ulink url="&mutt-download-ftp;"/></para>
38 </listitem>
39 <listitem>
40 <para>Download MD5 sum: &mutt-md5sum;</para>
41 </listitem>
42 <listitem>
43 <para>Download size: &mutt-size;</para>
44 </listitem>
45 <listitem>
46 <para>Estimated disk space required: &mutt-buildsize;</para>
47 </listitem>
48 <listitem>
49 <para>Estimated build time: &mutt-time;</para>
50 </listitem>
51 </itemizedlist>
52
53 <bridgehead renderas="sect3">Mutt Dependencies</bridgehead>
54
55 <bridgehead renderas="sect4">Optional</bridgehead>
56 <para><xref linkend="gnupg"/>,
57 <xref linkend="ispell"/>,
58 <xref linkend="mitkrb"/> or <xref linkend="heimdal"/>,
59 <xref linkend="cyrus-sasl"/>,
60 <xref linkend="openssl"/>,
61 <xref linkend="slang"/> and
62 <ulink url="http://sources.redhat.com/gdb/">GDB</ulink></para>
63
64 </sect2>
65
66 <sect2 role="installation">
67 <title>Installation of Mutt</title>
68
69 <para><application>Mutt</application> requires a group named
70 <systemitem class="groupname">mail</systemitem>. You can
71 add this group, if it does not exist, with this command:</para>
72
73<screen role="root"><userinput>groupadd -g 34 mail</userinput></screen>
74
75 <para>If you did not install a MTA, such as <xref linkend="postfix"/> or
76 <xref linkend="sendmail"/>, you need to modify the ownership of
77 <filename class="directory">/var/mail</filename> with this command:</para>
78
79<screen role="root"><userinput>chgrp -v mail /var/mail</userinput></screen>
80
81 <para>Install <application>Mutt</application> by running the following
82 commands:</para>
83
84<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
85 --enable-pop --enable-imap &amp;&amp;
86make</userinput></screen>
87
88 <para>This package does not come with a test suite.</para>
89
90 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
91
92<screen role='root'><userinput>make install</userinput></screen>
93
94 </sect2>
95
96 <sect2 role="commands">
97 <title>Command Explanations</title>
98
99 <para><parameter>--enable-pop</parameter>: This switch enables
100 POP3 support.</para>
101
102 <para><parameter>--enable-imap</parameter>: This switch enables
103 IMAP support.</para>
104
105 </sect2>
106
107 <sect2 role="configuration">
108 <title>Configuring Mutt</title>
109
110 <sect3 id="mutt-config">
111 <title>Config Files</title>
112
113 <para><filename>/etc/Muttrc</filename>, <filename>~/.muttrc</filename>,
114 <filename>/etc/mime.types</filename>, <filename>~/.mime.types</filename></para>
115
116 <indexterm zone="mutt mutt-config">
117 <primary sortas="e-etc-Muttrc">/etc/Muttrc</primary>
118 </indexterm>
119
120 <indexterm zone="mutt mutt-config">
121 <primary sortas="e-AA.muttrc">~/.muttrc</primary>
122 </indexterm>
123
124 <indexterm zone="mutt mutt-config">
125 <primary sortas="e-etc-mime.types">/etc/mime.types</primary>
126 </indexterm>
127
128 <indexterm zone="mutt mutt-config">
129 <primary sortas="e-AA.mime.types">~/.mime.types</primary>
130 </indexterm>
131
132 </sect3>
133
134 <sect3>
135 <title>Configuration Information</title>
136
137 <para>No changes in these files are necessary to begin using
138 <application>Mutt</application>. When you are ready to make changes, the
139 man page for <filename>muttrc</filename> is a good starting place.</para>
140
141 <para>In order to utilize <application>GnuPG</application>, use the following
142 command:</para>
143
144<screen><userinput>cat /usr/share/doc/mutt/samples/gpg.rc &gt;&gt; ~/.muttrc</userinput></screen>
145
146 </sect3>
147
148 </sect2>
149
150 <sect2 role="content">
151 <title>Contents</title>
152
153 <segmentedlist>
154 <segtitle>Installed Programs</segtitle>
155 <segtitle>Installed Libraries</segtitle>
156 <segtitle>Installed Directories</segtitle>
157
158 <seglistitem>
159 <seg>flea, mutt, mutt_dotlock, muttbug, pgpring, and pgpwrap</seg>
160 <seg>None</seg>
161 <seg>/usr/doc/mutt</seg>
162 </seglistitem>
163 </segmentedlist>
164
165 <variablelist>
166 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
167 <?dbfo list-presentation="list"?>
168 <?dbhtml list-presentation="table"?>
169
170 <varlistentry id="flea">
171 <term><command>flea</command></term>
172 <listitem>
173 <para>is a bug submitter for <application>Mutt</application>.</para>
174 <indexterm zone="mutt flea">
175 <primary sortas="b-flea">flea</primary>
176 </indexterm>
177 </listitem>
178 </varlistentry>
179
180 <varlistentry id="mutt-prog">
181 <term><command>mutt</command></term>
182 <listitem>
183 <para>is a Mail User Agent (MUA) which enables you to read, write and delete
184 your email.</para>
185 <indexterm zone="mutt mutt-prog">
186 <primary sortas="b-mutt">mutt</primary>
187 </indexterm>
188 </listitem>
189 </varlistentry>
190
191 <varlistentry id="mutt_dotlock">
192 <term><command>mutt_dotlock</command></term>
193 <listitem>
194 <para>implements the mail spool file lock.</para>
195 <indexterm zone="mutt mutt_dotlock">
196 <primary sortas="b-mutt_dotlock">mutt_dotlock</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="muttbug">
202 <term><command>muttbug</command></term>
203 <listitem>
204 <para>is a script that executes <command>flea</command>.</para>
205 <indexterm zone="mutt muttbug">
206 <primary sortas="c-muttbug">muttbug</primary>
207 </indexterm>
208 </listitem>
209 </varlistentry>
210
211 </variablelist>
212
213 </sect2>
214
215</sect1>
Note: See TracBrowser for help on using the repository browser.