a simple script simple mail function i called in my localhost and live server.

$message = "Line 1\nLine 2\nLine 3";

$message = wordwrap($message, 70);

$rs = mail('myemail@gmail.com', 'My Subject', $message);

both of them return bool true. with localhost i can receive email but in live server i cannot receive any mail.

then i check /var/mail/www-data there is some message

Mailing to remote domains not supported

linux, apache or php problem?

link|improve this question

50% accept rate
2  
Have you setup a mailserver on your serversystem? If you have, have you enabled remote domain mailing? – Jonas m Oct 11 '11 at 6:16
it is debian. just check and there is exim. i will try to figure out the configuration. thanks man – Elliot Yap Oct 11 '11 at 6:31
For sure. Mailservers are a big pice of work to make function and work correctly. I hope you will figure it out. – Jonas m Oct 11 '11 at 6:33
feedback

1 Answer

It seems a smtp server configuration issue, but since you are asking how to debug PHP mail, the best approach would be sniffing the tcp conversation. To do that you can capture the conversation using wireshark (or tcpdump if you are on console) and inspect the actual commands sent to and from the server.

link|improve this answer
cool, i will try out wireshark. seem something really interesting :) – Elliot Yap Oct 11 '11 at 6:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.