qmail + outgoing mail.

Hi

I Just installed qmail (to /usr/qmail)
instead of /var/qmail

in the src dir of qmail-1.03 i edited the conf-qmail file and put /usr/qmail instead of /var/qmail

i followed the instructions on lifewithqmail.org
I can receive mail, but for some reason i can't send out mail.
I get this error in outlook express

The message could not be sent because one of the recipients was rejected by the server. The rejected e-mail address was 'wizbomb@yahoo.com'. Subject 'Re: ', Account: 'mail.interactive-response.net', Server: 'mail.interactive-response.net', Protocol: SMTP, Server Response: '553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)', Port: 25, Secure(SSL): No, Server Error: 553, Error Number: 0x800CCC79

All I want to do is just be able to sendmail, and i'l be set.

Can anyone help me out with what I maybe missed?

interactive-response:~# cat /etc/tcp.smtp
127.:allow,RELAYCLIENT=""

i've even ran:

tcprules /etc/tcp.smtp.cdb /etc/tcp.smtp.tmp < /etc/tcp.smtp
chmod 644 /etc/tcp.smtp*


All i'm saying is. I can receive mail just fine.
I can't send mail, for some odd resaon.


This is how my qmail-smtpd executes:

#!/bin/sh
QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
MAXSMTPD=`cat /usr/qmail/control/concurrencyincoming`
if [ -z "$QMAILDUID" -o -z "$NOFILESGID" -o -z "$MAXSMTPD" ]; then
echo QMAILDUID, NOFILESGID, or MAXSMTPD is unset in
echo /usr/qmail/supervise/qmail-smtpd/run
exit 1
fi
exec /usr/local/bin/softlimit -m 700000000 \
/usr/local/bin/tcpserver -v -R -l 0 -x /etc/tcp.smtp.cdb -c "$MAXSMTPD" \
-u "$QMAILDUID" -g "$NOFILESGID" 0 smtp /usr/qmail/bin/qmail-smtpd 2>&1

my qmail-send runs
#!/bin/sh
exec /usr/qmail/rc

my /usr/qmail/control/concurrencyincoming is 900

interactive-response:/usr/qmail/supervise/qmail-pop3d# ll /etc/tcp*
-rw-r--r-- 1 root root 26 Mar 8 12:28 /etc/tcp.smtp
-rw-r--r-- 1 root root 2.0k Mar 8 13:02 /etc/tcp.smtp.cdb

I have vpopmail installed to /home/vpopmail
I ran cd /home/vpopmail
cd bin
./vadddomain interactive-response.net
./vadduser username@interactive-response.net

People can email that user, ive received it. I just can't send back to them... or to anyone for that matter.. I am pretty sure there was one small step I missed? Or something i can do to fix this problem....

Any ideas?

 

 

 

 

Top