0

我想在将邮件发送给用户之前使用 Spam-Assassin 对垃圾邮件进行评分。我正在使用 PHP 将其作为使用exec.

exec("/usr/bin/spamc -R < {$fname}",$score,$rr);

问题是返回的结果总是 0/0。我从 PHP Classes 网站获取了 PHP 代码。正在使用的演示消息如下

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>free free</title>
<meta content="false" http-equiv="imagetoolbar">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body>
viagra test test free free
</center></body></html>

请提出可能是什么问题

4

1 回答 1

0

proc_open尝试使用而不是更改您输入电子邮件内容的方式exec

$email_content = "Put your email content here."

$descriptorspec = array(
    0 => array("pipe", "r"),  // stdin read by child
    1 => array("pipe", "w"),  // stdout written to by child
    2 => array("file", "/tmp/spamd-error-output.txt", "a") // stderr
);

$process = proc_open("/usr/bin/spamc -R", $descriptorspec, $pipes);

if (is_resource($process)) {
    fwrite($pipes[0], $email_content);
    fclose($pipes[0]);
    $full_output = fgets($pipes[1], 1024);
}
于 2010-10-21T18:56:41.773 回答