source: networking/mailnews/mailx.xml@ 87351a9

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 87351a9 was 87351a9, checked in by Bruce Dubbs <bdubbs@…>, 4 years ago

Tag most of General Libraries and their dependencies

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

  • Property mode set to 100644
File size: 7.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!-- upstream is apparently still using CVS at sourceforge,
8 but not making tarballs. fedora have a script using CVS, but
9 debian keep a tarball -->
10 <!ENTITY mailx-download-http "http://ftp.debian.org/debian/pool/main/h/heirloom-mailx/heirloom-mailx_&mailx-version;.orig.tar.gz">
11 <!ENTITY mailx-download-ftp " ">
12 <!ENTITY mailx-md5sum "29a6033ef1412824d02eb9d9213cb1f2">
13 <!ENTITY mailx-size "317 KB">
14 <!ENTITY mailx-buildsize "3.2 MB">
15 <!ENTITY mailx-time "less than 0.1 SBU">
16]>
17
18<sect1 id="mailx" xreflabel="mailx-&mailx-version;">
19 <?dbhtml filename="mailx.html"?>
20
21 <sect1info>
22 <othername>$LastChangedBy$</othername>
23 <date>$Date$</date>
24 </sect1info>
25
26 <title>mailx-&mailx-version;</title>
27
28 <indexterm zone="mailx">
29 <primary sortas="a-Heirloom-mailx">Heirloom mailx</primary>
30 </indexterm>
31
32 <sect2 role="package">
33 <title>Introduction to Heirloom mailx</title>
34
35 <para>
36 The <application>Heirloom mailx</application> package (formerly
37 known as the <application>Nail</application> package) contains
38 <command>mailx</command>, a command-line Mail User Agent derived from
39 Berkeley Mail. It is intended to provide the functionality of the POSIX
40 <command>mailx</command> command with additional support for MIME
41 messages, IMAP (including caching), POP3, SMTP, S/MIME, message
42 threading/sorting, scoring, and filtering. <application>Heirloom
43 mailx</application> is especially useful for writing scripts and batch
44 processing.
45 </para>
46
47 &lfs10_checked;
48
49 <bridgehead renderas="sect3">Package Information</bridgehead>
50 <itemizedlist spacing='compact'>
51 <listitem>
52 <para>
53 Download (HTTP): <ulink url="&mailx-download-http;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download (FTP): <ulink url="&mailx-download-ftp;"/>
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download MD5 sum: &mailx-md5sum;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Download size: &mailx-size;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated disk space required: &mailx-buildsize;
74 </para>
75 </listitem>
76 <listitem>
77 <para>
78 Estimated build time: &mailx-time;
79 </para>
80 </listitem>
81 </itemizedlist>
82
83 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
84 <itemizedlist spacing='compact'>
85 <listitem>
86 <para>
87 Required patch: <ulink
88 url="&patch-root;/heirloom-mailx-&mailx-version;-fixes-1.patch"/>
89 </para>
90 </listitem>
91 </itemizedlist>
92
93 <bridgehead renderas="sect3">Heirloom mailx Dependencies</bridgehead>
94
95 <bridgehead renderas="sect4">Optional</bridgehead>
96 <para role="optional">
97 <!-- <xref linkend="openssl10"/> or -->
98 <xref linkend="nss"/>,
99 <xref linkend="mitkrb"/> (for IMAP GSSAPI authentication), and an
100 <xref linkend="server-mail"/>
101 </para>
102
103 <para condition="html" role="usernotes">User Notes:
104 <ulink url="&blfs-wiki;/mailx"/></para>
105
106 </sect2>
107
108 <sect2 role="installation">
109 <title>Installation of Heirloom mailx</title>
110
111 <!-- see r12697 for explanation, and still used by fedora even though it often
112 does work with a parallel make -->
113 <note>
114 <para>
115 This package does not support parallel build.
116 </para>
117 </note>
118
119 <para>
120 Install <application>Heirloom mailx</application> by running the
121 following commands.
122 </para>
123
124<screen><userinput>patch -Np1 -i ../heirloom-mailx-&mailx-version;-fixes-1.patch &amp;&amp;
125
126sed 's@&lt;openssl@&lt;openssl-1.0/openssl@' \
127 -i openssl.c fio.c makeconfig &amp;&amp;
128
129make -j1 LDFLAGS+="-L /usr/lib/openssl-1.0/" \
130 SENDMAIL=/usr/sbin/sendmail</userinput></screen>
131
132 <para>
133 This package does not come with a test suite.
134 </para>
135
136 <para>
137 Now, as the <systemitem class='username'>root</systemitem> user:
138 </para>
139
140<screen role='root'><userinput>make PREFIX=/usr UCBINSTALL=/usr/bin/install install &amp;&amp;
141
142ln -v -sf mailx /usr/bin/mail &amp;&amp;
143ln -v -sf mailx /usr/bin/nail &amp;&amp;
144
145install -v -m755 -d /usr/share/doc/heirloom-mailx-&mailx-version; &amp;&amp;
146install -v -m644 README /usr/share/doc/heirloom-mailx-&mailx-version;</userinput></screen>
147
148 </sect2>
149
150 <sect2 role="commands">
151 <title>Command Explanations</title>
152
153 <para>
154 <command>make SENDMAIL=/usr/sbin/sendmail</command>: This changes the
155 default MTA path of <command>/usr/lib/sendmail</command>.
156 </para>
157
158 <para>
159 <command>make PREFIX=/usr UCBINSTALL=/usr/bin/install
160 install</command>: This changes the default installation path of
161 <filename class='directory'>/usr/local</filename> and the default
162 <command>install</command> command path of
163 <filename class='directory'>/usr/ucb</filename>.
164 </para>
165
166 </sect2>
167
168 <sect2 role="configuration">
169 <title>Configuring Heirloom mailx</title>
170
171 <sect3 id="mailx-config">
172 <title>Config Files</title>
173
174 <para>
175 <filename>/etc/nail.rc</filename>, <filename>~/.mailrc</filename>
176 and <filename>~/.nailrc</filename>
177 </para>
178
179 <indexterm zone="mailx mailx-config">
180 <primary sortas="e-etc-nail.rc">/etc/nail.rc</primary>
181 </indexterm>
182
183 <indexterm zone="mailx mailx-config">
184 <primary sortas="e-AA.mailrc">~/.mailrc</primary>
185 </indexterm>
186
187 <indexterm zone="mailx mailx-config">
188 <primary sortas="e-AA.nailrc">~/.nailrc</primary>
189 </indexterm>
190
191 </sect3>
192
193 </sect2>
194
195 <sect2 role="content">
196 <title>Contents</title>
197
198 <segmentedlist>
199 <segtitle>Installed Programs</segtitle>
200 <segtitle>Installed Libraries</segtitle>
201 <segtitle>Installed Directories</segtitle>
202
203 <seglistitem>
204 <seg>mail, mailx and nail</seg>
205 <seg>None</seg>
206 <seg>None</seg>
207 </seglistitem>
208 </segmentedlist>
209
210 <variablelist>
211 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
212 <?dbfo list-presentation="list"?>
213 <?dbhtml list-presentation="table"?>
214
215 <varlistentry id="mailx-prog">
216 <term><command>mailx</command></term>
217 <listitem>
218 <para>
219 is a command-line mail user agent compatible with the
220 <command>mailx</command> command found on commercial Unix
221 versions.
222 </para>
223 <indexterm zone="mailx mailx-prog">
224 <primary sortas="b-mailx">mailx</primary>
225 </indexterm>
226 </listitem>
227 </varlistentry>
228
229 <varlistentry id="mail-mailx">
230 <term><command>mail</command></term>
231 <listitem>
232 <para>
233 is a symbolic link to <command>mailx</command>.
234 </para>
235 <indexterm zone="mailx mail-mailx">
236 <primary sortas="b-mail">mail</primary>
237 </indexterm>
238 </listitem>
239 </varlistentry>
240
241 <varlistentry id="nail-mailx">
242 <term><command>nail</command></term>
243 <listitem>
244 <para>
245 is a symbolic link to <command>mailx</command>.
246 </para>
247 <indexterm zone="mailx nail-mailx">
248 <primary sortas="b-nail">nail</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252 </variablelist>
253
254 </sect2>
255
256</sect1>
Note: See TracBrowser for help on using the repository browser.