M Alden wrote:
> Wondering if anyone could help me.
>
> Running 4.07 as dedicated server with no problems, except one.
>
> Incoming mail works A+. No outgoing mail, though. No errors.
> No bounce backs. No nothing.
>
> If I set the SMTP to use the cable providers backbone, it
> works fine. DNS is working A+. Site updates. Everything is
> fine.
>
> Any ideas?
You will need to examine log files to determine what is happening or not happening here. log in as user root, using the admin password. To view the outgoing mail queue, do:
/var/qmail/bin/qmail-qread
If there is nothing there, then mail is leaving your system and disappearing somewhere else. So investigate:
cd /var/log/qmail
ls -t
# The above command will list the log files, with most recent
# at top. View that file:
less ls -t | head -1
look through that log file and search for delivery notifications, such as this one:
962607916.147240 starting delivery 100: msg 15337 to remote charlieb@nlc.net.au
962607916.147559 status: local 0/10 remote 1/20
962607918.497803 delivery 100: success: 24.192.3.29_accepted_message./Remote_host_said:_250_RAA03476_Message_accepted_for_delivery/
Most of the details will be different, but "Remote_host_said" should tell you what is going on.
Regards
Charlie