On Mon, Dec 30, 2002 at 01:49:54PM -0800, Matt Darcy wrote: > [root@jordan qmail-pop3d]# ps axwwww|grep readproc > 1164 ? S 0:01 readproctitle service errors: ... unable to start > qma > il-pop3d/run: exec format error?supervise: fatal: unable to start > qmail-pop3d/ru > n: exec format error?supervise: fatal: unable to start qmail-pop3d/run: exec > for > mat error?supervise: fatal: unable to start qmail-pop3d/run: exec format > error?s > upervise: fatal: unable to start qmail-pop3d/run: exec format > error?supervise: f > atal: unable to start qmail-pop3d/run: exec format error? > 4575 pts/1 R 0:00 grep readproc > [root@jordan qmail-pop3d]#
It would be great if you could turn off line wrapping in your mailer. Thanks. > [root@jordan qmail-pop3d]# cat -e run > #!/bin/sh$ > exec /usr/local/bin/softlimit -m 5000000 \$ > /usr/local/bin/tcpserver -H -R 0 pop-3 /var/qmail/bin/qmail-popup \$ > alesi.projecthugo.co.uk /home/vpopmail/bin/vchkpw > /var/qmail/bin/qma > il-pop3d Maildir 2>&1$ > $ It is hard to tell with the line wrapping, but after looking at your first post of this file I believe the problem is that '/var/qmail/bin/qmail-pop3d` is on a new line, when it should either be immediately after vchkpw or there should be a \ as the last character on the vchkpw line. Fix this, the pop3d service should start within 5 seconds after its fixed. What you have: #!/bin/sh exec /usr/local/bin/softlimit -m 5000000 \ /usr/local/bin/tcpserver -H -R 0 pop-3 /var/qmail/bin/qmail-popup \ alesi.projecthugo.co.uk /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 2>&1 What it should be: #!/bin/sh exec /usr/local/bin/softlimit -m 5000000 \ /usr/local/bin/tcpserver -H -R 0 pop-3 /var/qmail/bin/qmail-popup \ alesi.projecthugo.co.uk /home/vpopmail/bin/vchkpw \ /var/qmail/bin/qmail-pop3d Maildir 2>&1 Good luck, Cory -- Cory Wright Stand Blue Technology http://www.standblue.net/