"john" <[EMAIL PROTECTED]> wrote:
>I finally managed to get the TCPSERVER running in my Qmail. But there
>is one thing that everyone should note. The script in the website and
>what is given in Dave Sills hardcopy is different.
I just diff'ed them, and they're identical.
Note that you might need to strip carriage returns added by the
InfoAve web server. If you do:
head -1 qmail-script.txt |od -c
And you get:
0000000 # ! / b i n / s h \r \n
0000013
(Note the \r.)
Then you need to do:
tr -d '\015' <qmail-script.txt >foo
mv foo qmail-script.txt
I'll add a note about this to LWQ.
-Dave