source: server/mail/qpopper.xml@ 9140bfa7

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.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 9140bfa7 was 9140bfa7, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Tagged qpopper.xml

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

  • Property mode set to 100644
File size: 5.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 qpopper-download-http "http://ftp.uni-koeln.de/mail/qpopper&qpopper-version;.tar.gz">
8 <!ENTITY qpopper-download-ftp "ftp://ftp.qualcomm.com/eudora/servers/unix/popper/qpopper&qpopper-version;.tar.gz">
9 <!ENTITY qpopper-md5sum "e00853280c9e899711f0b0239d3d8f86">
10 <!ENTITY qpopper-size "2.2 MB">
11 <!ENTITY qpopper-buildsize "9.0 MB">
12 <!ENTITY qpopper-time "0.13 SBU">
13]>
14
15<sect1 id="qpopper" xreflabel="Qpopper-&qpopper-version;">
16 <?dbhtml filename="qpopper.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Qpopper-&qpopper-version;</title>
24
25 <indexterm zone="qpopper">
26 <primary sortas="a-Qpopper">Qpopper</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Qpopper</title>
31
32 <para>The <application>Qpopper</application> package contains a
33 POP3 mail server.</para>
34
35 <bridgehead renderas="sect3">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>Download (HTTP): <ulink url="&qpopper-download-http;"/></para>
39 </listitem>
40 <listitem>
41 <para>Download (FTP): <ulink url="&qpopper-download-ftp;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download MD5 sum: &qpopper-md5sum;</para>
45 </listitem>
46 <listitem>
47 <para>Download size: &qpopper-size;</para>
48 </listitem>
49 <listitem>
50 <para>Estimated disk space required: &qpopper-buildsize;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated build time: &qpopper-time;</para>
54 </listitem>
55 </itemizedlist>
56
57 <bridgehead renderas="sect3">Qpopper Dependencies</bridgehead>
58
59 <bridgehead renderas="sect4">Required</bridgehead>
60 <para><ulink url="../server/mail.html">MTA</ulink></para>
61
62 <bridgehead renderas="sect4">Optional</bridgehead>
63 <para><xref linkend="openssl"/>,
64 <xref linkend="gdbm"/>,
65 <xref linkend="Linux_PAM"/>, and
66 <xref linkend="mitkrb"/> or <xref linkend="heimdal"/></para>
67
68 </sect2>
69
70 <sect2 role="installation">
71 <title>Installation of Qpopper</title>
72
73 <para>Install <application>Qpopper</application> with the following
74 commands:</para>
75
76<screen><userinput>./configure --prefix=/usr &amp;&amp;
77make</userinput></screen>
78
79 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
80
81<screen role="root"><userinput>make install</userinput></screen>
82
83 </sect2>
84
85 <sect2 role="configuration">
86 <title>Configuring Qpopper</title>
87
88 <sect3 id="qpopper-config">
89 <title>Configuration Information</title>
90
91 <para>Update the <application>Syslog</application> configuration file and
92 force the <command>syslogd</command> daemon to reread the new file so that
93 <application>Qpopper</application> events are logged:</para>
94
95 <indexterm zone="qpopper qpopper-config">
96 <primary sortas="e-etc-syslog.conf">/etc/syslog.conf</primary>
97 </indexterm>
98
99<screen role="root"><userinput>echo "local0.notice;local0.debug /var/log/POP.log" &gt;&gt; \
100 /etc/syslog.conf &amp;&amp;
101killall -HUP syslogd</userinput></screen>
102
103 <para>If you use <command>inetd</command>, the following command will
104 add the <application>Qpopper</application> entry to
105 <filename>/etc/inetd.conf</filename>:</para>
106
107 <indexterm zone="qpopper qpopper-config">
108 <primary sortas="e-etc-inetd.conf">/etc/inetd.conf</primary>
109 </indexterm>
110
111<screen role="root"><userinput>echo "pop3 stream tcp nowait root /usr/sbin/popper popper" &gt;&gt; \
112 /etc/inetd.conf &amp;&amp;
113killall inetd || inetd</userinput></screen>
114
115 <para>Issue a <command>killall -HUP inetd</command> to reread the
116 changed <filename>inetd.conf</filename> file.</para>
117
118 <para>If you use <command>xinetd</command>, the following command will
119 create the <application>Qpopper</application> file as
120 <filename>/etc/xinetd.d/pop3</filename>:</para>
121
122<screen role="root"><userinput>cat &gt;&gt; /etc/xinetd.d/pop3 &lt;&lt; "EOF"
123<literal># Begin /etc/xinetd.d/pop3
124
125service pop3
126{
127 port = 110
128 socket_type = stream
129 protocol = tcp
130 wait = no
131 user = root
132 server = /usr/sbin/popper
133}
134
135# End /etc/xinetd.d/pop3</literal>
136EOF</userinput></screen>
137
138 <indexterm zone="qpopper qpopper-config">
139 <primary sortas="e-etc-xinetd.conf">/etc/xinetd.conf</primary>
140 </indexterm>
141
142 <indexterm zone="qpopper qpopper-config">
143 <primary sortas="e-etc-xinetd.d-pop3">/etc/xinetd.d/pop3</primary>
144 </indexterm>
145
146 <para>Issue a <command>killall -HUP xinetd</command> to reread the
147 changed <filename>xinetd.conf</filename> file.</para>
148
149 </sect3>
150
151 </sect2>
152
153 <sect2 role="content">
154 <title>Contents</title>
155
156 <segmentedlist>
157 <segtitle>Installed Program</segtitle>
158 <segtitle>Installed Libraries</segtitle>
159 <segtitle>Installed Directories</segtitle>
160
161 <seglistitem>
162 <seg>popper</seg>
163 <seg>None</seg>
164 <seg>None</seg>
165 </seglistitem>
166 </segmentedlist>
167
168 <variablelist>
169 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
170 <?dbfo list-presentation="list"?>
171 <?dbhtml list-presentation="table"?>
172
173 <varlistentry id="popper-qpopper">
174 <term><command>popper</command></term>
175 <listitem>
176 <para>is the POP3 server daemon.</para>
177 <indexterm zone="qpopper popper-qpopper">
178 <primary sortas="b-popper">popper</primary>
179 </indexterm>
180 </listitem>
181 </varlistentry>
182
183 </variablelist>
184
185 </sect2>
186
187</sect1>
Note: See TracBrowser for help on using the repository browser.