source: server/mail/qpopper.xml@ 0931098

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 0931098 was 0931098, checked in by DJ Lucas <dj@…>, 20 years ago

Part VI xml update + bz815

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

  • Property mode set to 100644
File size: 3.6 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-size "2.2 MB">
10<!ENTITY qpopper-buildsize "9.0 MB">
11<!ENTITY qpopper-time "0.13 SBU">
12
13]>
14
15<sect1 id="qpopper" xreflabel="Qpopper-&qpopper-version;">
16<?dbhtml filename="qpopper.html"?>
17<title>Qpopper-&qpopper-version;</title>
18
19<sect2>
20<title>Introduction to <application>Qpopper</application></title>
21
22<para>The <application>Qpopper</application> package contains a
23<acronym>POP</acronym>3
24mail server.</para>
25
26<sect3><title>Package information</title>
27<itemizedlist spacing='compact'>
28<listitem><para>Download (HTTP): <ulink url="&qpopper-download-http;"/></para></listitem>
29<listitem><para>Download (FTP): <ulink url="&qpopper-download-ftp;"/></para></listitem>
30<listitem><para>Download size: &qpopper-size;</para></listitem>
31<listitem><para>Estimated Disk space required: &qpopper-buildsize;</para></listitem>
32<listitem><para>Estimated build time: &qpopper-time;</para></listitem></itemizedlist>
33</sect3>
34
35<sect3><title><application>Qpopper</application> dependencies</title>
36<sect4><title>Required</title>
37<para>
38<ulink url="../server/mail.html">MTA</ulink>
39</para></sect4>
40<sect4><title>Optional</title>
41<para>
42<xref linkend="openssl"/>,
43<xref linkend="gdbm"/>,
44<xref linkend="Linux_PAM"/> and
45<xref linkend="mitkrb"/>
46</para></sect4>
47
48</sect3>
49
50</sect2>
51
52<sect2>
53<title>Installation of <application>Qpopper</application></title>
54
55<para>Install <application>Qpopper</application> with the following commands:</para>
56
57<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
58make &amp;&amp;
59make install</command></userinput></screen>
60
61</sect2>
62
63
64<sect2>
65<title>Configuring <application>Qpopper</application></title>
66
67<sect3><title>Configuration Information</title>
68
69<para>If you use <command>inetd</command>, the following command will add the qpopper
70entry to <filename>/etc/inetd.conf</filename>:</para>
71
72<screen><userinput><command>echo "pop3 stream tcp nowait root /usr/sbin/popper popper" &gt;&gt; \
73 /etc/inetd.conf &amp;&amp;
74killall inetd || inetd &amp;&amp;
75echo "local0.notice;local0.debug /var/log/POP.log" &gt;&gt; \
76 /etc/syslog.conf &amp;&amp;
77killall -HUP syslogd</command></userinput></screen>
78
79<para>Issue a <command>killall -HUP inetd</command> to reread the changed
80<filename>inetd.conf</filename> file.</para>
81
82<para>If you use <command>xinetd</command>, the following command will add the qpopper
83entry to <filename>/etc/xinetd.conf</filename>:</para>
84
85<screen><userinput><command>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"</command>
86service pop3
87{
88 port = 110
89 socket_type = stream
90 protocol = tcp
91 wait = no
92 user = root
93 server = /usr/sbin/popper
94}
95<command>EOF</command></userinput></screen>
96
97<para>Issue a <command>killall -HUP xinetd</command> to reread the changed
98<filename>xinetd.conf</filename> file.</para>
99
100</sect3>
101
102</sect2>
103
104<sect2>
105<title>Contents</title>
106
107<para>The <application>Qpopper</application> package contains
108<command>popper</command>.
109</para>
110
111</sect2>
112
113<sect2><title>Description</title>
114
115<sect3><title>popper</title>
116<para><command>popper</command> is the <acronym>POP</acronym>3 server daemon.</para></sect3>
117
118</sect2>
119
120</sect1>
121
Note: See TracBrowser for help on using the repository browser.