source: server/mail/qpopper/qpopper-config.xml@ 7d5ce9d

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 v5_0 v5_0-pre1 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7d5ce9d was 7d5ce9d, checked in by Igor Živković <igor@…>, 21 years ago

updated qpopper intro

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

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[aaba28e]1<sect2>
[7d5ce9d]2<title>Configuring <application>qpopper</application></title>
[aaba28e]3
[7d5ce9d]4<sect3><title>Configuration Information</title>
[6cab80b]5
6<para>If you use inetd, the following command will add the qpopper
[e80cc95]7entry to <filename>/etc/inetd.conf</filename>:</para>
[6cab80b]8
[7d5ce9d]9<screen><userinput><command>echo "pop stream tcp nowait root /usr/sbin/popper popper" >> \
[f14c264]10/etc/inetd.conf &amp;&amp;
11echo "pop 110/tcp" &gt;&gt; /etc/services &amp;&amp;
[aaba28e]12killall inetd || inetd &amp;&amp;
13echo "local0.notice;local0.debug /var/log/POP.log" >> \
14/etc/syslog.conf &amp;&amp;
[7d5ce9d]15killall -HUP syslogd</command></userinput></screen>
[6cab80b]16
[7d5ce9d]17<para>Issue a <command>killall -HUP inetd</command> to reread the changed
18<filename>inetd.conf</filename> file.</para>
[6cab80b]19
20<para>If you use xinetd, the following command will add the qpopper
[2277d1bb]21entry to <filename>/etc/xinetd.conf</filename>:</para>
[6cab80b]22
[7d5ce9d]23<screen><userinput><command>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
[6cab80b]24 service pop
25 {
26 port = 110
27 socket_type = stream
28 protocol = tcp
29 wait = no
30 user = root
31 passenv = PATH
32 server = /usr/sbin/popper
33 server_args = popper
34 }
[7d5ce9d]35EOF</command></userinput></screen>
36
37<para>Issue a <command>killall -HUP xinetd</command> to reread the changed
38<filename>xinetd.conf</filename> file.</para>
[6cab80b]39
[aaba28e]40</sect3>
[7d5ce9d]41
[aaba28e]42</sect2>
Note: See TracBrowser for help on using the repository browser.