Yes I did create the link in the service directory.
Those who are monitoring this question, someone suggested that the script
should be as follows:
WRONG SCRIPT
=============
> #!/bin/sh
> exec /usr/local/bin/tcpserver -v -R 0 pop3
> /var/qmail/bin/qmail-popup mail.tibonline.net \
> /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1 | \
> /var/qmail/bin/splogger pop3d &
CORRECT SCRIPT
==============
> #!/bin/sh
> exec /usr/local/bin/tcpserver -v -R 0 pop3
> /var/qmail/bin/qmail-popup mail.tibonline.net \
> /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1 |
.... and create a ".../qmail-pop3/log" folder and include a
multilog logging script in there.
If the second script is correct, can someone explain the difference??
Kirti
-----Original Message-----
From: Timothy Legant [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 07, 2001 10:08 PM
To: '[EMAIL PROTECTED]'
Subject: Re: POP3 is driving me crazy!!!
On Wed, Mar 07, 2001 at 06:18:33PM -0500, Kirti S. Bajwa wrote:
> For the last two days I have done nothing else but to setup "pop3" to run
> under qmail. I installed qmail by following "qmail-HOWTO"
> (http://www.flunder.net/qmail/qmail-howto.html) procedure. "svscan" is
> starting qmail from "/service" directory. I have two directories
> "/var/qmail/supervise/qmail-send" & "/var/qmail/supervise/qmail-smtpd"
which
> has "run" scripts to start each of these service (as outlined in
> "qmail-HOWTO").
>
> My question is "where" to add the script to start pop3. For the last two
Your first try, below, looks pretty good. But... did you remember to
ln -s /var/qmail/supervise/qmail-pop3 /service/
You have to make a link in the /service directory for svscan to notice
it.
[snip...]
> First Try:
> =======
>
> I added a new directory as follows:
>
> /var/qmail/supervise/qmail-send (existing directory)
> /var/qmail/supervise/qmail-smtpd (existing
> directory)
> /var/qmail/supervise/qmail-pop3 (new directory)
>
> In the new directory I added a "run" script with the following to start
> pop3:
>
> #!/bin/sh
> exec /usr/local/bin/tcpserver -v -R 0 pop3
> /var/qmail/bin/qmail-popup mail.tibonline.net \
> /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir 2>&1 | \
> /var/qmail/bin/splogger pop3d &
Tim