I install Vagrant Box (precice64) using PHP5.3 and try to send him an email, but it is very slow. I have a simple script like:
$ok = mail('me@domain.com', 'test', 'test');
var_dump($ok);
And run it on the command line (or in the browser, it does not matter):
$ php mail.php
Mail is sent, but the script takes 30 seconds to a minute! Does anyone know what might cause this delay?
source
share