source: server/mail/qpopper.xml@ 9a66d5f

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 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 9a66d5f was b77ebfad, checked in by Randy McMurchy <randy@…>, 19 years ago

Added indexing tags to Exim and Qpopper instructions

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

  • Property mode set to 100644
File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/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<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="qpopper.html"?>
21<title>Qpopper-&qpopper-version;</title>
22<indexterm zone="qpopper">
23<primary sortas="a-Qpopper">Qpopper</primary></indexterm>
24
25<sect2>
26<title>Introduction to <application>Qpopper</application></title>
27
28<para>The <application>Qpopper</application> package contains a
29<acronym>POP</acronym>3 mail server.</para>
30
31<sect3><title>Package information</title>
32<itemizedlist spacing='compact'>
33<listitem><para>Download (HTTP):
34<ulink url="&qpopper-download-http;"/></para></listitem>
35<listitem><para>Download (FTP):
36<ulink url="&qpopper-download-ftp;"/></para></listitem>
37<listitem><para>Download MD5 sum: &qpopper-md5sum;</para></listitem>
38<listitem><para>Download size: &qpopper-size;</para></listitem>
39<listitem><para>Estimated disk space required:
40&qpopper-buildsize;</para></listitem>
41<listitem><para>Estimated build time:
42&qpopper-time;</para></listitem></itemizedlist>
43</sect3>
44
45<sect3><title><application>Qpopper</application> dependencies</title>
46<sect4><title>Required</title>
47<para><ulink url="../server/mail.html">MTA</ulink>
48</para>
49</sect4>
50
51<sect4><title>Optional</title>
52<para><xref linkend="openssl"/>,
53<xref linkend="gdbm"/>,
54<xref linkend="Linux_PAM"/>, and
55<xref linkend="mitkrb"/> or <xref linkend="heimdal"/></para>
56</sect4>
57</sect3>
58
59</sect2>
60
61<sect2>
62<title>Installation of <application>Qpopper</application></title>
63
64<para>Install <application>Qpopper</application> with the following
65commands:</para>
66
67<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
68make</command></userinput></screen>
69
70<para>Now, as the root user:</para>
71
72<screen><userinput role='root'><command>make install</command></userinput></screen>
73
74</sect2>
75
76<sect2>
77<title>Configuring <application>Qpopper</application></title>
78
79<sect3 id="qpopper-config"><title>Configuration Information</title>
80
81<para>If you use <command>inetd</command>, the following command will add the
82<application>Qpopper</application> entry to
83<filename>/etc/inetd.conf</filename>:</para>
84<indexterm zone="qpopper qpopper-config">
85<primary sortas="e-etc-inetd.conf">/etc/inetd.conf</primary></indexterm>
86<indexterm zone="qpopper qpopper-config">
87<primary sortas="e-etc-syslog.conf">/etc/syslog.conf</primary></indexterm>
88
89<screen><userinput><command>echo "pop3 stream tcp nowait root /usr/sbin/popper popper" &gt;&gt; \
90 /etc/inetd.conf &amp;&amp;
91killall inetd || inetd &amp;&amp;
92echo "local0.notice;local0.debug /var/log/POP.log" &gt;&gt; \
93 /etc/syslog.conf &amp;&amp;
94killall -HUP syslogd</command></userinput></screen>
95
96<para>Issue a <command>killall -HUP inetd</command> to reread the changed
97<filename>inetd.conf</filename> file.</para>
98
99<para>If you use <command>xinetd</command>, the following command will add the
100<application>Qpopper</application> entry to
101<filename>/etc/xinetd.conf</filename>:</para>
102<indexterm zone="qpopper qpopper-config">
103<primary sortas="e-etc-xinetd.conf">/etc/xinetd.conf</primary></indexterm>
104
105<screen><userinput><command>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"</command>
106service pop3
107{
108 port = 110
109 socket_type = stream
110 protocol = tcp
111 wait = no
112 user = root
113 server = /usr/sbin/popper
114}
115<command>EOF</command></userinput></screen>
116
117<para>Issue a <command>killall -HUP xinetd</command> to reread the changed
118<filename>xinetd.conf</filename> file.</para>
119</sect3>
120
121</sect2>
122
123<sect2>
124<title>Contents</title>
125
126<segmentedlist>
127<segtitle>Installed Program</segtitle>
128<segtitle>Installed Libraries</segtitle>
129<segtitle>Installed Directories</segtitle>
130
131<seglistitem>
132<seg>popper</seg>
133<seg>None</seg>
134<seg>None</seg>
135</seglistitem>
136</segmentedlist>
137
138<variablelist>
139<bridgehead renderas="sect3">Short Descriptions</bridgehead>
140<?dbfo list-presentation="list"?>
141
142<varlistentry id="popper-qpopper">
143<term><command>popper</command></term>
144<listitem><para>is the <acronym>POP</acronym>3 server daemon.</para>
145<indexterm zone="qpopper popper-qpopper">
146<primary sortas="b-popper">popper</primary>
147</indexterm></listitem>
148</varlistentry>
149</variablelist>
150
151</sect2>
152
153</sect1>
154
Note: See TracBrowser for help on using the repository browser.