Ho installato cronjob per l'utente root. Comunque quando il cron fallisce dovrei ricevere una email dal cronjob perché ho impostato MAILTO in questo modo in / etc / crontab:
MAILTO=my@email.com
Ho installato mailx usando
yum install mailx
Ma quando guardo il registro cron ottengo queste righe:
Feb 23 14:13:01 internal crond[6858]: (root) CMD (/var/www/vded/build/bin/sync.sh)
Feb 23 14:13:01 internal crond[6857]: (root) MAIL (mailed 79 bytes of output but got status 0x0001 )
Come posso risolvere questo problema?
AGGIORNARE :
- Ho installato mailx e sendmail usando yum.
- Ho iniziato sendmail.
- Quindi ora l'invio di un'e-mail funziona dalla riga di comando!
Ottengo questo errore nel maillog:
Feb 23 16:06:01 internal sendmail[7210]: o1NG61cd007210: from=root, size=425, class=0, nrcpts=1, msgid=<201002231606.o1NG61cd007210@internal.fff.com>, relay=root@localhost
Feb 23 16:06:01 internal sendmail[7211]: o1NG61hT007211: from=<root@internal.fff.com>, size=732, class=0, nrcpts=1, msgid=<201002231606.o1NG61cd007210@internal.fff.com>, proto=ESMTP, daemon=MTA, relay=localhost [127.0.0.1]
Feb 23 16:06:01 internal sendmail[7210]: o1NG61cd007210: to=root, ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30425, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (o1NG61hT007211 Message accepted for delivery)
Feb 23 16:06:01 internal sendmail[7212]: o1NG61hT007211: to=<root@internal.fff.com>, ctladdr=<root@internal.fff.com> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=30972, dsn=2.0.0, stat=Sent
internal.fff.com è il nome del server.
AGGIORNARE :
Quindi, in effetti, se inserisco la MAILTO=my@email.com
prima riga del mio crontab (usando crontab -e
) funziona.
Perché non funziona impostando MAILTO
in /etc/crontab
?
Grazie