<?php
//Listen to incoming e-mails
$sock = fopen("php://stdin", 'r');
email = '';
//Read e-mail into buffer
while (!feof($sock)) {
    $email .= fread($sock, 1024);
}
//Close socket
fclose($sock);
//pipe /usr/bin/php -q /home/checklet/public_html/response/catcher.php
//  #!/usr/local/bin/php -q - gives Zend Error, File not Found
//  #!/usr/bin/php -q - could not exec
?>
