I setup a Vagrant Box (precice64) with PHP5.3 and try to send a mail with it, but it's real slow. I have a simple script like:
$ok = mail('me@domain.com', 'test', 'test');
var_dump($ok);
And execute it on the command line (or browser, makes no difference):
$ php mail.php
The mail gets sent, but the script takes like 30 seconds to a minute to execute! Anyone know what might be causing this delay?