"jarrid jeeby" <[EMAIL PROTECTED]> wrote:
>/var/qmail/rc reads:
>exec env - PATH="/var/qmail/bin:$PATH" \
> qmail-start " cat /var/qmail/control/defaultdelivery " \
> accustamp
I see two problems. First, you should have:
`cat /var/qmail/control/defaultdelivery`
note that those are back quotes (`) not single quotes (') or double
quotes (").
Second, you're sending qmail-start's output to accustamp, but
accustamp just timestamps standard input and writes it to standard
output. You should redirect accustamp's output to a file or logging
program, e.g.:
exec env - PATH="/var/qmail/bin:$PATH" \
qmail-start " cat /var/qmail/control/defaultdelivery " \
accustamp > /var/log/qmail.log &
or
exec env - PATH="/var/qmail/bin:$PATH" \
qmail-start " cat /var/qmail/control/defaultdelivery " \
accustamp | splogger qmail &
>I can send mail out through SMTP but the only way I can allow relaying is to
>rm rcpthosts. Putting the /etc/tcp.smtp values into a cdb with many
>different IP's specifying ,RELAYCLIENT="" is not working. Applying the
>relayclient patch to use control/relay* is not working. I am wide open for
>relay abuse until this is corrected. I am aware of the number of people
>with relay problems but I feel I have triple checked all of the most common
>problems.
What is tcpserver logging? What does you tcp.smtp look like?
>Although I (and everyone else!) can successfully send mail out through SMTP,
>any mail received is not processed.
Fix you logging, and the logs will show where the problem is.
-Dave