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 | <!ENTITY alpine-download-http "http://alpine.freeiz.com/alpine/release/src/alpine-&alpine-version;.tar.xz">
|
---|
8 | <!ENTITY alpine-download-ftp " ">
|
---|
9 | <!ENTITY alpine-md5sum "02dad85c1be80ce020206f222ecf5ac8">
|
---|
10 | <!ENTITY alpine-size "4.6 MB">
|
---|
11 | <!ENTITY alpine-buildsize "122 MB">
|
---|
12 | <!ENTITY alpine-time "1.0 SBU">
|
---|
13 | ]>
|
---|
14 |
|
---|
15 | <sect1 id="alpine" xreflabel="Alpine-&alpine-version;">
|
---|
16 | <?dbhtml filename="alpine.html"?>
|
---|
17 |
|
---|
18 | <sect1info>
|
---|
19 | <othername>$LastChangedBy$</othername>
|
---|
20 | <date>$Date$</date>
|
---|
21 | </sect1info>
|
---|
22 |
|
---|
23 | <title>Alpine-&alpine-version;</title>
|
---|
24 |
|
---|
25 | <indexterm zone="alpine">
|
---|
26 | <primary sortas="a-alpine">alpine</primary>
|
---|
27 | </indexterm>
|
---|
28 |
|
---|
29 | <sect2 role="package">
|
---|
30 | <title>Introduction to Alpine</title>
|
---|
31 |
|
---|
32 | <para><application>Alpine</application> is a text-based email client
|
---|
33 | developed by the University of Washington.</para>
|
---|
34 |
|
---|
35 | &lfs81_checked;
|
---|
36 |
|
---|
37 | <bridgehead renderas="sect3">Package Information</bridgehead>
|
---|
38 | <itemizedlist spacing='compact'>
|
---|
39 | <listitem>
|
---|
40 | <para>Download (HTTP): <ulink url="&alpine-download-http;"/></para>
|
---|
41 | </listitem>
|
---|
42 | <listitem>
|
---|
43 | <para>Download (FTP): <ulink url="&alpine-download-ftp;"/></para>
|
---|
44 | </listitem>
|
---|
45 | <listitem>
|
---|
46 | <para>Download MD5 sum: &alpine-md5sum;</para>
|
---|
47 | </listitem>
|
---|
48 | <listitem>
|
---|
49 | <para>Download size: &alpine-size;</para>
|
---|
50 | </listitem>
|
---|
51 | <listitem>
|
---|
52 | <para>Estimated disk space required: &alpine-buildsize;</para>
|
---|
53 | </listitem>
|
---|
54 | <listitem>
|
---|
55 | <para>Estimated build time: &alpine-time;</para>
|
---|
56 | </listitem>
|
---|
57 | </itemizedlist>
|
---|
58 |
|
---|
59 | <bridgehead renderas="sect3">Alpine Dependencies</bridgehead>
|
---|
60 | <!--
|
---|
61 | <bridgehead renderas="sect4">Recommended</bridgehead>
|
---|
62 | <para role="recommended">
|
---|
63 | <xref linkend="openssl"/>
|
---|
64 | </para>
|
---|
65 | -->
|
---|
66 | <bridgehead renderas="sect4">Optional</bridgehead>
|
---|
67 | <para role="optional">
|
---|
68 | <xref linkend="openldap"/>,
|
---|
69 | <xref linkend="mitkrb"/>,
|
---|
70 | <xref linkend="aspell"/>,
|
---|
71 | <xref linkend="tcl"/>, and
|
---|
72 | <xref linkend="linux-pam"/>
|
---|
73 | </para>
|
---|
74 |
|
---|
75 | <para condition="html" role="usernotes">User Notes:
|
---|
76 | <ulink url="&blfs-wiki;/alpine"/></para>
|
---|
77 |
|
---|
78 | </sect2>
|
---|
79 |
|
---|
80 | <sect2 role="installation">
|
---|
81 | <title>Installation of Alpine</title>
|
---|
82 |
|
---|
83 | <para>Install <application>Alpine</application> by running the following
|
---|
84 | commands:</para>
|
---|
85 |
|
---|
86 | <screen><userinput>LIBS+="-lcrypto" ./configure --prefix=/usr \
|
---|
87 | --sysconfdir=/etc \
|
---|
88 | --without-ldap \
|
---|
89 | --without-krb5 \
|
---|
90 | --without-pam \
|
---|
91 | --without-tcl \
|
---|
92 | --with-ssl-dir=/usr \
|
---|
93 | --with-passfile=.pine-passfile &&
|
---|
94 | make</userinput></screen>
|
---|
95 |
|
---|
96 | <para>This package does not come with a test suite.</para>
|
---|
97 |
|
---|
98 | <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
|
---|
99 |
|
---|
100 | <screen role='root'><userinput>make install</userinput></screen>
|
---|
101 |
|
---|
102 | </sect2>
|
---|
103 |
|
---|
104 | <sect2 role="commands">
|
---|
105 | <title>Command Explanations</title>
|
---|
106 |
|
---|
107 | <para><command>LIBS+="-lcrypto"</command>: Enable linking to
|
---|
108 | openssl. Additional linker flags are required for
|
---|
109 | <xref linkend="linux-pam"/>, <option>-lpam</option>, and for
|
---|
110 | <xref linkend="mitkrb"/>, <option>-lkrb5</option>.</para>
|
---|
111 |
|
---|
112 | <para><parameter>--without-ldap</parameter>: Disables LDAP support.</para>
|
---|
113 |
|
---|
114 | <para><parameter>--without-krb5</parameter>: Disables Kerberos support.</para>
|
---|
115 |
|
---|
116 | <para><parameter>--without-pam</parameter>: Disables Linux-PAM
|
---|
117 | support.</para>
|
---|
118 |
|
---|
119 | <para><parameter>--without-tcl</parameter>: Disables TCL support.</para>
|
---|
120 |
|
---|
121 | <para><parameter>--with-ssl-dir=/usr</parameter>: Sets the root path to
|
---|
122 | OpenSSL libraries and include files.</para>
|
---|
123 |
|
---|
124 | <para><parameter>--with-passfile=.pine-passfile</parameter>: Sets the
|
---|
125 | password cache file.</para>
|
---|
126 |
|
---|
127 | <para><option>--without-ssl</option>: Disables OpenSSL support.</para>
|
---|
128 |
|
---|
129 | </sect2>
|
---|
130 |
|
---|
131 | <sect2 role="configuration">
|
---|
132 | <title>Configuring Alpine</title>
|
---|
133 |
|
---|
134 | <sect3 id="alpine-config">
|
---|
135 | <title>Config Files</title>
|
---|
136 |
|
---|
137 | <para><filename>~/.pinerc</filename></para>
|
---|
138 |
|
---|
139 | <indexterm zone="alpine alpine-config">
|
---|
140 | <primary sortas="e-AA.pinerc">~/.pinerc</primary>
|
---|
141 | </indexterm>
|
---|
142 |
|
---|
143 | </sect3>
|
---|
144 |
|
---|
145 | <sect3>
|
---|
146 | <title>Configuration Information</title>
|
---|
147 |
|
---|
148 | <para>It is not required to manually edit any configuration files to use
|
---|
149 | the <application>Alpine</application> email client. Users can configure
|
---|
150 | <application>Alpine</application> using the graphical configuration menu,
|
---|
151 | which stores the changes in <filename>~/.pinerc</filename>.</para>
|
---|
152 |
|
---|
153 | </sect3>
|
---|
154 |
|
---|
155 | </sect2>
|
---|
156 |
|
---|
157 | <sect2 role="content">
|
---|
158 | <title>Contents</title>
|
---|
159 |
|
---|
160 | <segmentedlist>
|
---|
161 | <segtitle>Installed Programs</segtitle>
|
---|
162 | <segtitle>Installed Libraries</segtitle>
|
---|
163 | <segtitle>Installed Directories</segtitle>
|
---|
164 |
|
---|
165 | <seglistitem>
|
---|
166 | <seg>alpine, pico, pilot, rpdump, and rpload</seg>
|
---|
167 | <seg>none</seg>
|
---|
168 | <seg>none</seg>
|
---|
169 | </seglistitem>
|
---|
170 | </segmentedlist>
|
---|
171 |
|
---|
172 | <variablelist>
|
---|
173 | <bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
---|
174 | <?dbfo list-presentation="list"?>
|
---|
175 | <?dbhtml list-presentation="table"?>
|
---|
176 |
|
---|
177 | <varlistentry id="alpine-bin">
|
---|
178 | <term><command>alpine</command></term>
|
---|
179 | <listitem>
|
---|
180 | <para>is the Alpine mailer.</para>
|
---|
181 | <indexterm zone="alpine alpine-bin">
|
---|
182 | <primary sortas="b-alpine-bin">alpine</primary>
|
---|
183 | </indexterm>
|
---|
184 | </listitem>
|
---|
185 | </varlistentry>
|
---|
186 |
|
---|
187 | <varlistentry id="pico">
|
---|
188 | <term><command>pico</command></term>
|
---|
189 | <listitem>
|
---|
190 | <para>is a standalone text editor similar to the Alpine message composer.</para>
|
---|
191 | <indexterm zone="alpine pico">
|
---|
192 | <primary sortas="b-pico">pico</primary>
|
---|
193 | </indexterm>
|
---|
194 | </listitem>
|
---|
195 | </varlistentry>
|
---|
196 |
|
---|
197 | <varlistentry id="pilot">
|
---|
198 | <term><command>pilot</command></term>
|
---|
199 | <listitem>
|
---|
200 | <para>is a standalone file system navigator.</para>
|
---|
201 | <indexterm zone="alpine pilot">
|
---|
202 | <primary sortas="b-pilot">pilot</primary>
|
---|
203 | </indexterm>
|
---|
204 | </listitem>
|
---|
205 | </varlistentry>
|
---|
206 |
|
---|
207 | <varlistentry id="rpdump">
|
---|
208 | <term><command>rpdump</command></term>
|
---|
209 | <listitem>
|
---|
210 | <para>is a utility for downloading a pinerc or address book to the
|
---|
211 | local machine.</para>
|
---|
212 | <indexterm zone="alpine rpdump">
|
---|
213 | <primary sortas="b-rpdump">rpdump</primary>
|
---|
214 | </indexterm>
|
---|
215 | </listitem>
|
---|
216 | </varlistentry>
|
---|
217 |
|
---|
218 | <varlistentry id="rpload">
|
---|
219 | <term><command>rpload</command></term>
|
---|
220 | <listitem>
|
---|
221 | <para> is a utility for uploading a local pinerc or address book to
|
---|
222 | an IMAP server.</para>
|
---|
223 | <indexterm zone="alpine rpload">
|
---|
224 | <primary sortas="b-rpload">rpload</primary>
|
---|
225 | </indexterm>
|
---|
226 | </listitem>
|
---|
227 | </varlistentry>
|
---|
228 |
|
---|
229 | </variablelist>
|
---|
230 |
|
---|
231 | </sect2>
|
---|
232 |
|
---|
233 | </sect1>
|
---|