On Wed, 2002-09-04 at 21:21, Robert Porter wrote: > On Wednesday 04 September 2002 10:30 pm, rm wrote: > > > > Could you post your pop3d run script? and are you using the mysql > > option? > > > > regis > This is the current one, which works with local users > > #!/bin/sh > MAXPOP3D=`head -1 /var/qmail/control/concurrencypop3` > exec /command/softlimit -m 2000000 \ > /usr/local/bin/tcpserver -v -R -H -l -o -x /etc/tcp.pop3.cdb -c "$MAXPOP3D" \ > 0 110 /var/qmail/bin/qmail-popup zoomer.rp2c.com /bin/checkpassword \ > /var/qmail/bin/qmail-pop3d Maildir 2>&1 > > This is the modified one which fails. > I also tried replacing the real host with mail.rp2c.com which is a valid MX > record in DNS but points to the same host. And I added mail.rp2c.com to the > virtualhosts file etc. Still no joy. > > #!/bin/sh > MAXPOP3D=`head -1 /var/qmail/control/concurrencypop3` > exec /command/softlimit -m 2000000 \ > /usr/local/bin/tcpserver -v -R -H -l -o -x /etc/tcp.pop3.cdb -c "$MAXPOP3D" \ > 0 110 /var/qmail/bin/qmail-popup zoomer.rp2c.com /home/vpopmail/bin/vchkpw \ > /var/qmail/bin/qmail-pop3d Maildir 2>&1
Here's a copy of my .../pop3d/run. I guess the big difference is your path to /etc/tcp.pop3.cdb. I'm not sure what's going on there. you might try this format - it's right out of "life with qmail". I mentioned the mysql option because you usually have to raise the softlimit. #!/bin/sh exec /usr/local/bin/softlimit -m 40000000 \ /usr/local/bin/tcpserver -v -R -H -l 0 0 110 /var/qmail/bin/qmail-popup \ pop.mbpost.com /home/vpopmail/bin/vchkpw \ /var/qmail/bin/qmail-pop3d Maildir 2>&1