bounce processing in qmail
i wanted to collect the emails that don't exists on servers and bounce back to webmaster
with php
This is the script for test
cat /usr/local/bin/bounce_process.php
#!/usr/bin/php -q
// read from stdin
$fd = fopen("php://stdin", "r");
$email = "";
while (!feof($fd)) {
$email .= fread($fd, 1024);
}
fclose($fd);
$outFile = fopen("/tmp/emailResult.txt","w");
fwrite($outFile,$email);
fclose($outFile);
?>
and here is the .qmail file for webmaster
cat .qmail
| /usr/local/bin/bounce_process.php
Next i need to create an table with users that don't exists
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment