source: server/mail/qpopper.xml@ 1f672c1

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 1f672c1 was 1f672c1, checked in by Bruce Dubbs <bdubbs@…>, 19 years ago

Update to xinetd configuration files from patch by John Gnew

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

  • Property mode set to 100644
File size: 5.1 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></para>
48</sect4>
49
50<sect4><title>Optional</title>
51<para><xref linkend="openssl"/>,
52<xref linkend="gdbm"/>,
53<xref linkend="Linux_PAM"/>, and
54<xref linkend="mitkrb"/> or <xref linkend="heimdal"/></para>
55</sect4>
56</sect3>
57
58</sect2>
59
60<sect2>
61<title>Installation of <application>Qpopper</application></title>
62
63<para>Install <application>Qpopper</application> with the following
64commands:</para>
65
66<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
67make</command></userinput></screen>
68
69<para>Now, as the root user:</para>
70
71<screen><userinput role='root'><command>make install</command></userinput></screen>
72
73</sect2>
74
75<sect2>
76<title>Configuring <application>Qpopper</application></title>
77
78<sect3 id="qpopper-config"><title>Configuration Information</title>
79
80<para>Update the <application>Syslog</application> configuration file and
81force the <command>syslogd</command> daemon to reread the new file so that
82<application>Qpopper</application> events are logged:</para>
83<indexterm zone="qpopper qpopper-config">
84<primary sortas="e-etc-syslog.conf">/etc/syslog.conf</primary></indexterm>
85
86<screen><userinput><command>echo "local0.notice;local0.debug /var/log/POP.log" &gt;&gt; \
87 /etc/syslog.conf &amp;&amp;
88killall -HUP syslogd</command></userinput></screen>
89
90<para>If you use <command>inetd</command>, the following command will add the
91<application>Qpopper</application> entry to
92<filename>/etc/inetd.conf</filename>:</para>
93<indexterm zone="qpopper qpopper-config">
94<primary sortas="e-etc-inetd.conf">/etc/inetd.conf</primary></indexterm>
95
96<screen><userinput><command>echo "pop3 stream tcp nowait root /usr/sbin/popper popper" &gt;&gt; \
97 /etc/inetd.conf &amp;&amp;
98killall inetd || inetd</command></userinput></screen>
99
100<para>Issue a <command>killall -HUP inetd</command> to reread the changed
101<filename>inetd.conf</filename> file.</para>
102
103<para>If you use <command>xinetd</command>, the following command will create the
104<application>Qpopper</application> file as <filename>/etc/xinetd.d/pop3</filename>:</para>
105<indexterm zone="qpopper qpopper-config">
106<primary sortas="e-etc-xinetd.conf">/etc/xinetd.d/pop3</primary></indexterm>
107
108<screen><userinput><command>cat &gt;&gt; /etc/xinetd.d/pop3 &lt;&lt; "EOF"</command>
109# Begin /etc/xinetd.d/pop3
110
111service pop3
112{
113 port = 110
114 socket_type = stream
115 protocol = tcp
116 wait = no
117 user = root
118 server = /usr/sbin/popper
119}
120
121# End /etc/xinetd.d/pop3
122<command>EOF</command></userinput></screen>
123
124<para>Issue a <command>killall -HUP xinetd</command> to reread the changed
125<filename>xinetd.conf</filename> file.</para>
126</sect3>
127
128</sect2>
129
130<sect2>
131<title>Contents</title>
132
133<segmentedlist>
134<segtitle>Installed Program</segtitle>
135<segtitle>Installed Libraries</segtitle>
136<segtitle>Installed Directories</segtitle>
137
138<seglistitem>
139<seg>popper</seg>
140<seg>None</seg>
141<seg>None</seg>
142</seglistitem>
143</segmentedlist>
144
145<variablelist>
146<bridgehead renderas="sect3">Short Descriptions</bridgehead>
147<?dbfo list-presentation="list"?>
148
149<varlistentry id="popper-qpopper">
150<term><command>popper</command></term>
151<listitem><para>is the <acronym>POP</acronym>3 server daemon.</para>
152<indexterm zone="qpopper popper-qpopper">
153<primary sortas="b-popper">popper</primary>
154</indexterm></listitem>
155</varlistentry>
156</variablelist>
157
158</sect2>
159
160</sect1>
161
Note: See TracBrowser for help on using the repository browser.