This is my qmail-smtp/run file:
#!/bin/sh

QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
LOCAL=`head -1 /var/qmail/control/me`

if [ -z "$QMAILDUID" -o -z "$NOFILESGID" -o -z "$MAXSMTPD" -o -z "$LOCAL"
]; then
    echo QMAILDUID, NOFILESGID, MAXSMTPD, or LOCAL is unset in
    echo /var/qmail/supervise/qmail-smtpd/run
    exit 1
fi

if [ ! -f /var/qmail/control/rcpthosts ]; then
    echo "No /var/qmail/control/rcpthosts!"
    echo "Refusing to start SMTP listener because it'll create an open relay"
    exit 1
fi

exec /usr/local/bin/softlimit -m 2000000 \
    /usr/local/bin/tcpserver -v -R -l "$LOCAL" -x /etc/tcp.smtp.cdb -c
"$MAXSMTPD" \
        -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp /var/qmail/bin/qmail-smtpd
2>&1

This is my qmail-smtp/run/log file :

#!/bin/sh
exec /usr/local/bin/setuidgid qmaill /usr/local/bin/multilog t /var/log/qmail/smtpd

Thanks for the help
Raymond

> Show us your qmail-smtpd startup scripts.
>
> Shane
>
> -----Original Message-----
> From: Raymond Luong [mailto:[EMAIL PROTECTED]
> Sent: Friday, 29 August 2003 12:37 AM
> To: vpopmail list
> Subject: [vchkpw] Can not get vpopmail to enable roaming support
>
>
>
>
> Please Help
> I recompile vpopmail with --enable roaming=y-- but
> it still does not work. I can connect to via pop3 server but can not send
> mail. It reply with "domain isn't in my list of allow rcpthosts". I don't
> know what's wrong or what I'd missing. I really need to get this up and
> running. Any help will be great. I'm running redhat 8.0, vpopmail 5.3.14,
> qmailadmin, and courier-imap.
> I read around the internet and discover under vpopmail folder, there
> should
> be 2 files: etc/tcp.smtp and etc/tcp.smpt.cdb. I check my vpopmail
> directory
> and there is no such files. So I link my qmail tcp.smtp and tcp.smtp.cdb
> with the following command "ln -s /etc/tcp.smtp /etc/tcp.smtp.cdb to the
> ~vpopmail/etc/ and I gave both files 777 permission. That didn't make any
> difference, I still can't send via pop3 connection. What am I missing.
>
> Thank you so much for any help you can provide
> raymond
>
>

Reply via email to