How to stop Cron from sending messages about errors
- by Beck
I have this strange mails comming from cron:
Return-Path: <[email protected]>
Delivered-To: [email protected]
Received: by domain.com (Postfix, from userid 0)
id 6F944264D0; Mon, 10 Jan 2011 10:35:01 +0000 (UTC)
From: [email protected] (Cron Daemon)
To: [email protected]
Subject: Cron <root@domain> lynx -dump http://www.domain.com/cron/realqueue
Content-Type: text/plain; charset=ANSI_X3.4-1968
X-Cron-Env: <SHELL=/bin/sh>
X-Cron-Env: <PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin>
X-Cron-Env: <HOME=/root>
X-Cron-Env: <LOGNAME=root>
Message-Id: <[email protected]>
Date: Mon, 10 Jan 2011 10:35:01 +0000 (UTC)
/bin/sh: lynx: not found
I have this cron settings in crontab file:
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
*/5 * * * * lynx -dump http://www.domain.com/cron/realqueue
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
Lynx is installed on my Ubuntu as well.
Ofc in place of domain.com is my domain, just replaced.
Thanks ;)