On January 23, 2003 03:17 am, Kamau Allan wrote:
>
> I had tried setting the log level as follows without success.
> #!/bin/sh
> exec /usr/bin/env - POP3_LOGLEVEL=4 LOGLEVEL=3 DEBUGLEVEL=3
> /usr/local/bin/softlimit -m 6000000 \
> /usr/local/bin/tcpserver -v -R -H -l 0 0 110
> /var/qmail/bin/qmail-popup \ virtual2.arril.net
> /var/qmail/bin/auth_pop /var/qmail/bin/qmail-pop3d Maildir 2>&1
>
Smells like you don't have "DEBUG=-DDEBUG" in the Makefile. You only
need the LOGLEVEL=3 line (which should be more like LOGLEVEL=255 to
get tonnes of logging info) - no need for POP3_LOGLEVEL and
DEBUGLEVEL afaik.
You might also want to "keep it simple" and just "export LOGLEVEL=255"
before the exec in the original run file (without the 'env - ...').
-neil