Seems as if your problem is a bit vague, but it sounds familiar. Actually I would start with any DNS information that pertains to your website, such as your MX records. Inside of each DNS name table is an entry for a Mail exchanger (MX), if this machine resides with your ISP maybe have them look into it there, otherwise check on your DNS tables and make an entry similar to this:
IN MX 10 mailserver
The number 10 is your priority level, where mailserver would be the actual name of your machine. When mail tries to come to your domain it bounces around looking for your MX information, which is what takes it so long to arrive. Hope this helps.
Its not like this, I better explair a little bit better I guess
When I send a mail from my server to another server it takes some days before the message arrives on the OTHER server. Theres a problem with the sending of a mail not recieving, recieving is very fast
A good idea would be to test the connection and DNS first to see if the problem lies there or with sendmail. Type the following:
nslookup (you will go into a promptless shell)
set type=mx
targetdomain.com (type yourtarget domain name here instead)
Get the IP address of the mail server from the listing.
CTL D to break out.
Now do a telnet from your web/mail server:
telnet <IP Address> 25
This should give you a connection to the target mail server. You can now send a test message manually if you want by doing the following:
mail from: you@domain.com <CR>(your email address)
rcpt to: receiver@target.com <CR>(receiver's email address)
data <CR>
type some message here, to end do a <CR>, type a . and <CR>
If you got through the above with no hitches and connectivity problems then you will probably need to look at the receiving mailserver for answers.
Hope this helps
Chris
IBM Certified Specialist - MQSeries
IBM Certified Specialist - AIX 5 pSeries System Administration
Quite so Tony, don't know why I always want to do it the difficult way!....LOL IBM Certified Specialist - MQSeries
IBM Certified Specialist - AIX 5 pSeries System Administration
Well, I didn't mean at all that he shouldn't do what you suggested. He should- because if that works quickly and sendmail doesn't, that's an important thing to know.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.