Jeremy Kister wrote:
On 5/11/2006 5:55 PM, MT wrote:
sends hup signal to qmail-send to accept new domain
So I have /home/vpopmail/domains, /var/qmail/control/, /var/qmail/
users on my NFS.
[...]
I have to delete / add the domain on 10.0.0.2 to get it to work - but
then 10.0.0.1 will give me the same error.
Do you have something on 10.0.0.2 that will hup qmail-send when the
/var/qmail/users/assign file changes ?
I use this code every hour in cron:
#!/bin/sh
PATH=/usr/local/bin:/usr/bin:/bin
if [ -s "/var/tmp/last.var-qmail-users-assign" ] ; then
cmp /var/qmail/users/assign /var/tmp/last.var-qmail-users-assign
>/dev/null 2>&1
if [ $? -gt 0 ] ; then
svc -h /service/qmail-send
cp /var/qmail/users/assign /var/tmp/last.var-qmail-users-assign
fi
else
echo "no valid /var/tmp/last.var-qmail-users-assign"
mkdir -p /var/tmp/
cp /var/qmail/users/assign /var/tmp/last.var-qmail-users-assign
fi
I was just about to suggest the same thing but it looks like a
qmail-smtpd error, not a qmail-send error
He wrote:
---
If I then set my MUA up to send/receive against 10.0.0.2 it fails and
the logs report:
vpopmail[4034]: vchkpw-smtp: vpopmail user not found
[EMAIL PROTECTED]:10.5.4.41
---
That looks like a smtp-auth session (ie qmail-smtpd) to me.
but yah, he does need to hup qmail-send on the other server after adding
a new domain.
Rick