I'm fumbling a bit on getting vpopmail working properly and could use a
little help...  This is my first time at installing a POP server, so I
apologize if I'm giving you too much 'info'

1) All the DNS for the server is handled by Zonedit, so it's very easy to
turn forwarding on and off for a 'virtual domain'.

2) I have installed all the packages relating to vpopserver.  I want to be
able for users to access their email using their MUAs.

vpopserver compiled with 'gmake' (openbsd 3.1) and
    --enable-roaming-users=y
    
crontab updated with
    40 * * * * /home/vpopmail/bin/clearopensmtp 2>&1 > /dev/null

#> cat ~vpopmail/etc/tcp.smtp
   127.0.0.:allow,RELAYCLIENT=""
   10.1.1.:allow,RELAYCLIENT=""
   207.104.84.34:allow,RELAYCLIENT=""




3)
It's up

qmailctl stat
/service/qmail-send: up (pid 27308) 512 seconds
/service/qmail-send/log: up (pid 3367) 512 seconds
/service/qmail-smtpd: up (pid 9434) 512 seconds
/service/qmail-smtpd/log: up (pid 1668) 512 seconds
/service/qmail-pop3d: up (pid 11667) 512 seconds
/service/qmail-pop3d/log: up (pid 25743) 512 seconds
messages in queue: 3
messages in queue but not yet preprocessed: 0

   -- and -- 

bash# ps waux | grep qmail
root     30610  0.0  0.1   148   352 p0  S+     4:16PM    0:00.00 grep qmail
root     15112  0.0  0.1    24   272 ??  I      4:10PM    0:00.00 supervise
qmail-send 
root      4390  0.0  0.1    24   272 ??  I      4:10PM    0:00.00 supervise
qmail-smtpd 
root      8400  0.0  0.1    24   272 ??  I      4:10PM    0:00.01 supervise
qmail-pop3d 
qmaill    3367  0.0  0.1    36   268 ??  I      4:10PM    0:00.01
/usr/local/bin/multilog t /var/log/qmail
qmails   27308  0.0  0.1    92   356 ??  I      4:10PM    0:00.02 qmail-send
qmaild    9434  0.0  0.1    64   348 ??  I      4:10PM    0:00.01
/usr/local/bin/tcpserver -v -R -H -l 0 -x /etc/tcp.smtp.cdb -c 20
qmaill    1668  0.0  0.1    36   272 ??  I      4:10PM    0:00.01
/usr/local/bin/multilog t /var/log/qmail/smtpd
qmaill   25743  0.0  0.1    36   268 ??  I      4:10PM    0:00.01
/usr/local/bin/multilog t /var/log/qmail/pop3d
qmailp   31719  0.0  0.1    44   324 ??  I      4:10PM    0:00.01 splogger
qmail 
root     14198  0.0  0.1    44   284 ??  I      4:10PM    0:00.01
qmail-lspawn ./Mailbox
qmailr   17137  0.0  0.1    40   280 ??  I      4:10PM    0:00.01
qmail-rspawn 
qmailq   28181  0.0  0.1    36   300 ??  I      4:10PM    0:00.01
qmail-clean 


4)
Now, here's where I'm a bit in the dark on the start up script for pop3d.  I
set /var/qmail/control/concurrencypop3 to 20, but have no idea if this is
appropriate....

root@aztec:> cat /service/qmail-pop3d/run

#!/bin/sh

# Dave Sill, 2001-11-06
# For use with The qmail Handbook, ISBN 1893115402

MAXPOP3D=`head -1 /var/qmail/control/concurrencypop3`
if [ -z "$MAXPOP3D" ]; then
    echo MAXPOP3D is unset in
    echo $0
    exit 1
fi

exec /usr/local/bin/softlimit -m 2000000 \
    /usr/local/bin/tcpserver -v -R -H -l 0 -x /etc/tcp.pop3.cdb -c
"$MAXPOP3D" \
        0 110 /var/qmail/bin/qmail-popup aztec.regpack.com
#       /bin/checkpassword \

#       From vpomail Install
        /home/vpopmail/bin/vchkpw \

       /var/qmail/bin/qmail-pop3d Maildir 2>&1


5) The PROBLEM ( this didn't occur until I added vpomail )

a)  simple off server email

   echo to: [EMAIL PROTECTED]| /var/qmail/bin/qmail-inject


creates this in maillog:
Aug 20 16:56:43 aztec qmail: 1029862603.990137 starting delivery 2: msg
833396 to remote [EMAIL PROTECTED]
Aug 20 16:56:43 aztec qmail: 1029862603.990583 status: local 0/10 remote
1/20
Aug 20 16:56:43 aztec qmail: 1029862603.990865 delivery 2: deferral:
Sorry,_message_has_wrong_owner._(#4.3.5)/
Aug 20 16:56:43 aztec qmail: 1029862603.991074 status: local 0/10 remote
0/20

b)   a simple 'on server' email

   echo to: [EMAIL PROTECTED] | /var/qmail/bin/qmail-inject

Aug 20 16:50:38 aztec qmail: 1029862238.190147 starting delivery 17: msg
833394 to local [EMAIL PROTECTED]
Aug 20 16:50:38 aztec qmail: 1029862238.190679 status: local 1/10 remote
0/20
Aug 20 16:50:38 aztec qmail: 1029862238.190944 delivery 17: deferral:
Sorry,_message_has_wrong_owner._(#4.3.5)/
Aug 20 16:50:38 aztec qmail: 1029862238.191141 status: local 0/10 remote
0/20
    The subsequent fowarding  .qmail-root sends it to &netremit with the
same error messages in maillog.

c) email to a virtual user ([EMAIL PROTECTED]) also returns the same
messages in the maillog.


root@aztec:/var/qmail/control> cat virtualdomains
netremit.com:netremit
netremit.com:netremit.com
evmoore.com:evmoore.com

root@aztec:/var/qmail/control> cat plusdomain
regpack.com

root@aztec:/var/qmail/control> cat locals
localhost
aztec.regpack.com
regpack.com


root@aztec:/var/qmail/control> cat rcpthosts
localhost
aztec.regpack.com
regpack.com
netremit.com 
evmoore.com

root@aztec:/var/qmail/users> cat assign
+netremit.com-:netremit.com:89:89:/home/vpopmail/domains/netremit.com:-::
+evmoore.com-:evmoore.com:89:89:/home/vpopmail/domains/evmoore.com:-::
.


Any suggestions?

Thanks Eric.

Reply via email to