PHP, mail() and OSX Leopard

So I couldn’t figure out any way of doing this, and I can’t stand stuff like this beating me so I’ve been messing about with it for the last hour and it’s finally working so I thought I’d share what I’ve done. Maybe this will get spidered, but mostly it’ll be here for my future reference!

The long and short of this situation is that OSX includes sendmail, but it seems to be some sort of alias for postfix, so you should actually be configuring postfix. Right now, I should probably clear up that I’m by no means an expert on any of this and it’s all been trial and error for me so far so if it doesn’t work for you, I can try and help but I can’t promise anything.

There are 4 files I used for the following:

  • /etc/hostconfig
  • /etc/postfix/main.cf
  • php.ini (this could be anywhere depending on your installation, mine’s in /usr/local/php5/lib/)
  • /var/log/mail.log

firstly, sudo nano -w /etc/hostconfig and add the following line:

MAILSERVER=-YES-

then sudo nano -w /etc/postfix/main.cf, find the myhostname variable (by default it’s host.domain.tld), uncomment it and change it to your domain (if you’re on a machine that doesn’t have a DNS, you can make it a domain that you’re responsible for so that it doesn’t get shut down at the receiving end, but please don’t make it google.com or something like that!)

now, open php.ini and look for the sendmail_path variable, uncomment it, make its value sendmail -t -i, save then restart apache. I’m not really sure if this is 100% necessary as there’s a comment above that says this is the default value anyway, but it can’t hurt!

now open a terminal window and execute the next couple of commands:

% sudo postfix start
% tail -f /var/log/mail.log

finally, create a file called mail.php (or whatever!) and add the following to it:

<?php
mail(
  'you@yourdomain.com', // your email address
  'Test', // email subject
  'This is an email', // email body
  "From: Me <me@mydomain.com>\r\n" // additional headers
);
?>

obviously replace you@yourdomain.com with your email address and me@mydomain.com with a valid email address (domain at least, as some mail servers will bounce your email if the sender’s domain isn’t real). Now navigate to your mail.php file (likely http://localhost/mail.php) and watch your terminal window to see that it’s been sent successfully. If it hasn’t, let me know if you fixed it and I’ll update this - it’s annoying to me that there isn’t really an answer to this question that I can find so the more comprehensive this is, the more helpful!.

Tags: , , , , , , , , ,

9 Responses to “PHP, mail() and OSX Leopard”

  1. Jansen Says:

    Thank you very much for this page, i’d worked on that probleme for three days.

    Have a nice day, carrying on your attitude.

  2. Jasper Tandy Says:

    no problem at all, glad you found it useful!

  3. echohelloworld » Blog Archive » 033 030708 - Street Level Says:

    [...] I witnessed how temperamental postfix can be, yet again. On our test server, postfix wasn’t starting and hadn’t been for around 35 days. There [...]

  4. Miles Says:

    This was hugely helpful. Thanks for making your notes public…

  5. Jasper Tandy Says:

    glad it helped!

  6. Barry Says:

    Hello, cheers very much for that - I’m astounded this isn’t more commonly available

  7. Jasper Tandy Says:

    I agree - the only good thing about it was that I got paid to figure out how to do it! Glad it was helpful!

  8. sixAxis Says:

    wow great tutorial..
    i got this error message on terminal.. i don’t know if it is safe or not..

    Jul 12 09:52:59 sixaxis postfix/local[9979]: warning: service not found: biff/udp

  9. Are Rikardsen Says:

    I followed these very useful instructions to make it work on my mac (see “Postfix on a null client”) : http://www.postfix.org/STANDARD_CONFIGURATION_README.html

Leave a Reply


Bad Behavior has blocked 119 access attempts in the last 7 days.