Changeset 16351a1
- Timestamp:
- 03/22/2004 04:47:41 PM (21 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 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, gimp3, 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, v5_1, v5_1-pre1, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 3697cc5
- Parents:
- bce380aa
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
rbce380aa r16351a1 11 11 12 12 <itemizedlist> 13 14 <listitem><para>March 22nd, 2004 [igor]: Updated to xinetd-2.3.13 15 and removed inetd part from qpopper instructions.</para></listitem> 13 16 14 17 <listitem><para>March 22nd, 2004 [igor]: Updated to Apache-2.0.49, -
server/mail/qpopper/qpopper-config.xml
rbce380aa r16351a1 4 4 <sect3><title>Configuration Information</title> 5 5 6 <para>If you use <command>inetd</command>, the following command will add the qpopper 7 entry to <filename>/etc/inetd.conf</filename>:</para> 8 9 <screen><userinput><command>echo "pop stream tcp nowait root /usr/sbin/popper popper" >> \ 10 /etc/inetd.conf && 11 echo "pop 110/tcp" >> /etc/services && 12 killall inetd || inetd && 13 echo "local0.notice;local0.debug /var/log/POP.log" >> \ 14 /etc/syslog.conf && 15 killall -HUP syslogd</command></userinput></screen> 16 17 <para>Issue a <command>killall -HUP inetd</command> to reread the changed 18 <filename>inetd.conf</filename> file.</para> 19 20 <para>If you use <command>xinetd</command>, the following command will add the qpopper 6 <para>The following command will add the qpopper 21 7 entry to <filename>/etc/xinetd.conf</filename>:</para> 22 8 23 9 <screen><userinput><command>cat >> /etc/xinetd.conf << "EOF"</command> 24 25 26 port= 11027 socket_type= stream28 protocol= tcp29 wait= no30 user= root31 passenv= PATH32 server= /usr/sbin/popper33 server_args= popper34 10 service pop 11 { 12 port = 110 13 socket_type = stream 14 protocol = tcp 15 wait = no 16 user = root 17 passenv = PATH 18 server = /usr/sbin/popper 19 server_args = popper 20 } 35 21 <command>EOF</command></userinput></screen> 36 22 -
server/mail/qpopper/qpopper-desc.xml
rbce380aa r16351a1 3 3 4 4 <para>The <application>Qpopper</application> package contains 5 <command> qpopper</command>.5 <command>popper</command>. 6 6 </para> 7 7 -
server/mail/qpopper/qpopper-intro.xml
rbce380aa r16351a1 17 17 <sect3><title><application>Qpopper</application> dependencies</title> 18 18 <sect4><title>Required</title> 19 <para><xref linkend="sendmail"/> or <xref linkend="postfix"/> 19 <para> 20 <xref linkend="xinetd"/> and 21 <ulink url="../server/mail.html">MTA</ulink> 20 22 </para></sect4> 23 <sect4><title>Optional</title> 24 <para> 25 <xref linkend="openssl"/>, 26 <xref linkend="gdbm"/>, 27 <xref linkend="Linux_PAM"/> and 28 <ulink url="http://web.mit.edu/kerberos/www/">krb5</ulink> 29 </para></sect4> 30 21 31 </sect3> 22 32 -
server/mail/qpopper/qpopper.ent
rbce380aa r16351a1 5 5 <!ENTITY qpopper-desc SYSTEM "qpopper-desc.xml"> 6 6 <!ENTITY qpopper-version "4.0.5"> 7 <!ENTITY qpopper-download-http "http:// public.www.planetmirror.com/pub/mail/popper/qpopper&qpopper-version;.tar.gz">7 <!ENTITY qpopper-download-http "http://ftp.uni-koeln.de/mail/qpopper&qpopper-version;.tar.gz"> 8 8 <!ENTITY qpopper-download-ftp "ftp://ftp.qualcomm.com/eudora/servers/unix/popper/qpopper&qpopper-version;.tar.gz"> 9 9 <!ENTITY qpopper-size "2.2 MB"> -
server/other/xinetd/xinetd-config.xml
rbce380aa r16351a1 9 9 10 10 <sect3><title>Configuration Information</title> 11 12 <para>Create the <filename>xinetd.conf</filename> file with the following commands:</para>13 14 <screen><userinput><command>cp /etc/xinetd.conf /etc/xinetd.conf.bak</command></userinput></screen>15 11 16 12 <para>Insure the path to all daemons is <filename -
server/other/xinetd/xinetd-exp.xml
rbce380aa r16351a1 2 2 <title>Command explanations</title> 3 3 4 <para>< command>./configure --prefix=/usr</command>: Change4 <para><parameter>./configure --prefix=/usr</parameter>: Change 5 5 the default installation directory of 6 6 <filename class="directory">/usr/local</filename>.</para> -
server/other/xinetd/xinetd.ent
rbce380aa r16351a1 5 5 <!ENTITY xinetd-config SYSTEM "xinetd-config.xml"> 6 6 <!ENTITY xinetd-desc SYSTEM "xinetd-desc.xml"> 7 <!ENTITY xinetd-version "2.3.1 2">7 <!ENTITY xinetd-version "2.3.13"> 8 8 <!ENTITY xinetd-download-http "http://www.xinetd.org/xinetd-&xinetd-version;.tar.gz"> 9 <!ENTITY xinetd-download-ftp " ">10 <!ENTITY xinetd-size "2 85KB">11 <!ENTITY xinetd-buildsize " 6.5 MB">12 <!ENTITY xinetd-time "0.1 4SBU">9 <!ENTITY xinetd-download-ftp "ftp://gd.tuwien.ac.at/infosys/servers/xinetd/xinetd-&xinetd-version;.tar.gz"> 10 <!ENTITY xinetd-size "291 KB"> 11 <!ENTITY xinetd-buildsize "5.5 MB"> 12 <!ENTITY xinetd-time "0.12 SBU">
Note:
See TracChangeset
for help on using the changeset viewer.