glfs/server/mail/qpopper/qpopper-config.xml
Larry Lawrence 2277d1bb98 server, gnome edits
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@868 af4574ff-66df-0310-9fd7-8a98e5e911e0
2003-04-21 14:00:15 +00:00

48 lines
1.4 KiB
XML

<sect2>
<title>Configuring qpopper</title>
<sect3><title>Config files</title>
<para><filename>/etc/inetd.conf</filename> and
<filename>/etc/syslogd.conf</filename></para>
</sect3>
<sect3><title>Configuring qpopper</title>
<para>If you use inetd, the following command will add the qpopper
entry to <filename>/etc/inetd.conf</filename>:</para>
<para><screen><userinput>echo "pop stream tcp nowait root /usr/sbin/popper popper" >> \
/etc/inetd.conf &amp;&amp;
echo "pop 110/tcp" &gt;&gt; /etc/services &amp;&amp;
killall inetd || inetd &amp;&amp;
echo "local0.notice;local0.debug /var/log/POP.log" >> \
/etc/syslog.conf &amp;&amp;
killall -HUP syslogd</userinput></screen></para>
<para>Issue a killall -HUP inetd to reread the changed
<filename>inetd.conf</filename>
file.</para>
<para>If you use xinetd, the following command will add the qpopper
entry to <filename>/etc/xinetd.conf</filename>:</para>
<para><screen><userinput>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
service pop
{
port = 110
socket_type = stream
protocol = tcp
wait = no
user = root
passenv = PATH
server = /usr/sbin/popper
server_args = popper
}
EOF</userinput></screen></para>
<para>Issue a killall -HUP xinetd to reread the changed
<filename>xinetd.conf</filename>
file.</para>
</sect3>
</sect2>