cron.d文件中MAILTOvariables的作用域

我一直在试图改变几个作业的邮件收件人(打包到cron.d文件中),出现了一个有趣的问题。

如果我在开始时指定了MAILTO,那么收件人将被设置,直到下一个MAILTO指令; 然而,似乎没有解释如何cron应用这个variables作业,具体来说,在cron.d文件中的variables文件特定的影响其他文件(可能是读取后)?

例如我有/etc/cron.d/test

 # cat test MAILTO="[email protected]" */5 * * * * root echo "this is the FIRST test message" MAILTO="[email protected]" */5 * * * * root echo "this is the SECOND test message" 

这从我看到的应该是应该的。 但是,我应该添加MAILTO='root'作为结束行重置全球MAILTO或是不必要的?

相关的cron版本是3.0pl1-116。