web-dev-qa-db-ja.com

cronでのメール送信をグローバルに無効にする

Webには、ここで尋ねられたようにcronでのメール送信を無効にする方法の提案がたくさんあります Linuxがcronエラーを電子メールで送信しないようにしますか? 。すべてのユーザーとすべてのコマンドに対してcronでのメール送信を無効にするように設定できるグローバル構成フラグは本当にありませんか。追加する必要があるすべてのユーザーに伝えたくありません

MAILTO=""

または

<command> > /dev/null 2>&1

crontabに。

6
Laoneo

マニュアルページによると、デーモンの引数に-m offを追加することで、cronメールを無効にできます。

   -m     This option allows you to specify a Shell command to use for sending Cron mail  output  instead  of
          using  sendmail(8)  This command must accept a fully formatted mail message (with headers) on stan‐
          dard input and send it as a mail message to the recipients specified in the mail headers.  Specify‐
          ing the string off (i.e., crond -m off) will disable the sending of mail.
9
Gryphius