source: archive/qpopper.xml

trunk
Last change on this file was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 17 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

  • Property mode set to 100644
File size: 6.1 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 <!ENTITY qpopper-download-http " ">
8 <!ENTITY qpopper-download-ftp "ftp://ftp.qualcomm.com/eudora/servers/unix/popper/qpopper&qpopper-version;.tar.gz">
9 <!ENTITY qpopper-md5sum "3b62b70fbcd16bb17795e1762dd33765">
10 <!ENTITY qpopper-size "1.2 MB">
11 <!ENTITY qpopper-buildsize "7.2 MB">
12 <!ENTITY qpopper-time "0.1 SBU">
13]>
14
15<sect1 id="qpopper" xreflabel="Qpopper-&qpopper-version;">
16 <?dbhtml filename="qpopper.html"?>
17
18
19 <title>Qpopper-&qpopper-version;</title>
20
21 <indexterm zone="qpopper">
22 <primary sortas="a-Qpopper">Qpopper</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Qpopper</title>
27
28 <para>The <application>Qpopper</application> package contains a
29 POP3 mail server.</para>
30
31 &lfs74_built;
32
33 <bridgehead renderas="sect3">Package Information</bridgehead>
34 <itemizedlist spacing="compact">
35 <listitem>
36 <para>Download (HTTP): <ulink url="&qpopper-download-http;"/></para>
37 </listitem>
38 <listitem>
39 <para>Download (FTP): <ulink url="&qpopper-download-ftp;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download MD5 sum: &qpopper-md5sum;</para>
43 </listitem>
44 <listitem>
45 <para>Download size: &qpopper-size;</para>
46 </listitem>
47 <listitem>
48 <para>Estimated disk space required: &qpopper-buildsize;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated build time: &qpopper-time;</para>
52 </listitem>
53 </itemizedlist>
54
55 <bridgehead renderas="sect3">Qpopper Dependencies</bridgehead>
56
57 <bridgehead renderas="sect4">Required</bridgehead>
58 <para role="required">An <xref linkend="server-mail"/></para>
59
60 <bridgehead renderas="sect4">Optional</bridgehead>
61 <para role="optional">
62 <xref linkend="openssl"/>,
63 <xref linkend="linux-pam"/>, and
64 <xref linkend="mitkrb"/>
65 </para>
66
67 <para condition="html" role="usernotes">User Notes:
68 <ulink url="&blfs-wiki;/qpopper"/></para>
69
70 </sect2>
71
72 <sect2 role="installation">
73 <title>Installation of Qpopper</title>
74
75 <para>Install <application>Qpopper</application> with the following
76 commands:</para>
77
78<screen><userinput>./configure --prefix=/usr --enable-standalone &amp;&amp;
79make</userinput></screen>
80
81 <para>This package does not come with a test suite.</para>
82
83 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
84
85<screen role="root"><userinput>make install &amp;&amp;
86install -D -m644 GUIDE.pdf /usr/share/doc/qpopper-&qpopper-version;/GUIDE.pdf</userinput></screen>
87
88 </sect2>
89
90 <sect2 role="commands">
91 <title>Command Explanations</title>
92
93 <para><option>--enable-standalone</option>: This option gives the
94 flexibility to run <application>Qpopper</application> in
95 standalone mode.</para>
96
97 </sect2>
98
99 <sect2 role="configuration">
100 <title>Configuring Qpopper</title>
101
102 <sect3 id="qpopper-config">
103 <title>Configuration Information</title>
104
105 <para>Update the <application>Syslog</application> configuration file and
106 force the <command>syslogd</command> daemon to reread the new file so that
107 <application>Qpopper</application> events are logged:</para>
108
109 <indexterm zone="qpopper qpopper-config">
110 <primary sortas="e-etc-syslog.conf">/etc/syslog.conf</primary>
111 </indexterm>
112
113<screen role="root"><userinput>echo "local0.notice;local0.debug /var/log/POP.log" &gt;&gt; /etc/syslog.conf &amp;&amp;
114killall -HUP syslogd</userinput></screen>
115
116 <para id="qpopper-init">If you want <application>Qpopper</application> to
117 start automatically when the system is booted, install the
118 <filename>/etc/rc.d/init.d/qpopper</filename> init script included in the
119 <xref linkend="bootscripts"/> package.</para>
120
121 <indexterm zone="qpopper qpopper-init">
122 <primary sortas="f-qpopper">popper</primary>
123 </indexterm>
124
125<screen role="root"><userinput>make install-qpopper</userinput></screen>
126
127 <para>This startup procedure uses a configuration file. The details of
128 the configuration file can be found in the documentation file
129 <filename>GUIDE.pdf</filename>.</para>
130
131<screen role="root"><userinput>cat &gt; /etc/mail/qpopper.conf &lt;&lt; "EOF"
132<literal># Qpopper configuration file
133
134set debug = false
135
136set spool-dir = /var/spool/mail/
137set temp-dir = /var/spool/mail/
138
139set downcase-user = true
140set trim-domain = true
141
142set statistics = true
143
144# End /etc/shells</literal>
145EOF</userinput></screen>
146
147 <para>If you use <command>inetd</command>, the following command will
148 add the <application>Qpopper</application> entry to
149 <filename>/etc/inetd.conf</filename>:</para>
150
151 <indexterm zone="qpopper qpopper-config">
152 <primary sortas="e-etc-inetd.conf">/etc/inetd.conf</primary>
153 </indexterm>
154
155<screen role="root"><userinput>echo "pop3 stream tcp nowait root /usr/sbin/popper popper" &gt;&gt; /etc/inetd.conf &amp;&amp;
156killall inetd || inetd</userinput></screen>
157
158 <para>Issue a <command>killall -HUP inetd</command> to reread the
159 changed <filename>inetd.conf</filename> file.</para>
160
161 </sect3>
162
163 </sect2>
164
165 <sect2 role="content">
166 <title>Contents</title>
167
168 <segmentedlist>
169 <segtitle>Installed Program</segtitle>
170 <segtitle>Installed Libraries</segtitle>
171 <segtitle>Installed Directories</segtitle>
172
173 <seglistitem>
174 <seg>popper</seg>
175 <seg>None</seg>
176 <seg>None</seg>
177 </seglistitem>
178 </segmentedlist>
179
180 <variablelist>
181 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
182 <?dbfo list-presentation="list"?>
183 <?dbhtml list-presentation="table"?>
184
185 <varlistentry id="popper-qpopper">
186 <term><command>popper</command></term>
187 <listitem>
188 <para>is the POP3 server daemon.</para>
189 <indexterm zone="qpopper popper-qpopper">
190 <primary sortas="b-popper">popper</primary>
191 </indexterm>
192 </listitem>
193 </varlistentry>
194
195 </variablelist>
196
197 </sect2>
198
199</sect1>
Note: See TracBrowser for help on using the repository browser.