* Miles Scruggs <[EMAIL PROTECTED]> writes:
> When I have the pop3d initialized via inetd.conf with:
> pop3 stream tcp nowait root /var/qmail/bin/qmail-popup qmail-popup \
> post.3abn.org /bin/checkvpw /var/qmail/bin/qmail-pop3d Maildir
> Where is the logging taking place?
Nowhere? Have you tried using tcpserver instead of inetd (which, like
syslog) is inherently evil?
> I would like to use syslog only for the reason that I like the
> timestamps.
man tain64nlocal
> My problem is that I can't authenticate via vmailmgrd which is running
> and I have authenticated with oMail web admin and added users etc.
,----
| (robin@radioactive):(~)$ cat /service/pop3/run
| #!/bin/sh
| export PATH
| PATH="/var/qmail/bin:/usr/local/bin:$PATH"
| exec 2>&1 \
| softlimit -d250000 \
| tcpserver -u 0 -g 16 -c 20 -v -H -R -X -x tcp.cdb -- 0 110 \
| qmail-popup `sed 1q /var/qmail/control/me` \
| checkvpw \
| /usr/sbin/relay-ctrl-allow \
| qmail-pop3d Maildir
`----
This will give you nice, manageable logs in /service/pop3/log/main.
Really ;-)