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

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 1ae02579 was 939cf0da, checked in by Randy McMurchy <randy@…>, 19 years ago

Moved OpenSSL from Chapter 8 to Chapter 4

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