我已经使用 opendkim(centos)在我的服务器上设置了 dkim。当 php 执行邮件命令(在网站上,例如 forgot.php)时。它会发送一封使用 DKIM 签名的电子邮件。但我还设置了一个 cron 作业来运行 mailcron.php 来发送电子邮件。
我通过输入 crontab -e [ENTER] */5 * * * * php -q /var/www/html/mailcron.php [save] 来设置 cron
cron 日志的输出
Jul 21 03:15:01 veepiz crond[3819]: (root) CMD (/etc/webmin/status/monitor.pl)
Jul 21 03:15:01 veepiz crond[3820]: (root) CMD (/etc/webmin/virtual-server/collectinfo.pl)
Jul 21 03:15:01 veepiz crond[3821]: (root) CMD (php -q /var/www/html/mailcron.php)
为什么使用 cron 发送的电子邮件没有签名,而直接从网站运行的电子邮件却有签名。
<?php
set_time_limit(0);
error_reporting(E_ALL);
$dbserver='localhost';
$dbuser='cccc';
$dbpassword='xxxx';
$dbname='veepiz';
$homepath="http://www.veepiz.com";
$supportemail="[email protected]";
$localpath = '';
$domainpath = '.veepiz.com';
$dblink=mysql_connect($dbserver,$dbuser,$dbpassword);
require("class.phpmailer.php");
if (!$dblink)
{
die('Could not connect to database.<br/>'.mysql_error());
}
if (!(mysql_select_db($dbname,$dblink)))
{
die('Could not select database<br/>'.mysql_error());
}
$q="SELECT * FROM emailcron ORDER BY id ASC";
$r=mysql_query($q);
if ($r)
{
if (mysql_num_rows($r)>0)
{
$message="";
$n=0;
$c=0;
while ($o=mysql_fetch_object($r))
{
$x = new PHPMailer();
$x->From = "[email protected]";
$x->FromName = "Veepiz";
$x->AddAddress($o->emailaddress,$o->toname);
$x->AddReplyTo("[email protected]", "Veepiz");
$x->WordWrap = 50; // set word wrap to 50 characters
$x->IsHTML(true); // set email format to HTML
$x->Subject = $o->subject;
$x->Body = nl2br($o->content);
$x->AltBody = strip_tags($o->content);
if(!$x->Send())
{ $c++;
$message .= "Message could not be sent. <br/>\n";
$message .= "Mailer Error: " . $x->ErrorInfo."<br/>\n";
} else { $n++; mysql_query("DELETE FROM emailcron WHERE id=".$o->id); }
}
if (strlen($message)>0)
{
echo $message;
} else
{
echo "Mails sent:$n; Mails Failed:$c";
}
}
}
?>
答案1
cron 作业的 shell 环境通常与登录 shell 不同。这应该是原因。
另外请确保提供 PHP 的完整路径,例如
*/5 * * * * * /usr/local/php5/bin/php -q /var/www/html/mailcron.php
http://web.cecs.pdx.edu/~akshay/2009/11/the-cron-environment/