I'm trying to get my PHP scripts to send mail using mail() command, which I think uses the linux sendmail or mail command.
I've tried both sending with the PHP mail() and linux command line mail command, but in both cases the mail gets sent, but it only reaches some emails. I've tested with 5 different domains and 3 of them receive the email while 2 of them don't. The mail's don't even go to spam, they just don't arrive at all.
With PHP mail() I am using correct From address header and I can receiuve the mail in my gmail account. When I look at the "original" in Gmail, I can see that everything is okay (spf=pass, etc...)
It just feels like it's some automatic rejection by some receiving servers. Can anyone point me in the right direction?
UPDATE: I checked my MTA log file and I found these:
Nov 24 08:30:09 ranits postfix/pickup[8484]: 94861EC738: uid=33 from=<www-data>
Nov 24 08:30:09 ranits postfix/cleanup[8555]: 94861EC738: message-id=<20111124083009.94861EC738@mydomain>
Nov 24 08:30:09 ranits postfix/qmgr[7985]: 94861EC738: from=<www-data@mydomain.eu>, size=351, nrcpt=1 (queue active)
Nov 24 08:30:09 ranits postfix/smtp[8631]: 94861EC738: to=<name@mydomain.ee>, relay=mh3.elkdata.ee[213.180.31.146]:25, delay=0.35, delays=0/0/0.35/0, dsn=5.5.2, status=bounced (host mh3.elkdata.ee[213.180.31.146] refused to talk to me: 504 5.5.2 <mydomain>: Helo command rejected: need fully-qualified hostname)
and
Nov 24 08:28:10 ranits postfix/local[8558]: 69563EC738: to=<myname@mydomain.eu>, relay=local, delay=0.01, delays=0/0/0/0, dsn=5.1.1, status=bounced (unknown user: "myname")
(Of course i substituted real email and domain names for fake ones here)
UPDATE: SOLUTION
Well, as it turned out, there were 2 problems with my postfix configuration. My MTA logs provided some really useful information for this. If anyone wonders, then the log file was in /var/log/mail.log in my case
First, I needed to set myhostname to have a fully-qualified domain name like this:
myhostname = mail.mydomain.eu
Second, I needed to remove everything after my_desdtination like this:
mydestination =
In my case, both these settings were in /etc/postfix/main.cf file
You can also change them via command-line like this:
postconf -e myhostname=mail.mydomain.com
Thanks to Timofey for pointing me in the right direction.