cron (8) (실제로 메시지를 보내는 데몬)의 매뉴얼 페이지에 따르면 :
-m This option allows you to specify a shell command string to use for
sending cron mail output instead of sendmail(8). This command must
accept a fully formatted mail message (with headers) on stdin and send
it as a mail message to the recipients specified in the mail headers.
그것은 기본적으로 sendmail을 사용하고 있다고 믿게합니다. strace로 확인합시다 :
이메일을 생성 할 크론 작업을 설정하십시오.
user@host1 ~:
$ crontab -e
crontab: installing new crontab
user@host1 ~:
$ crontab -l
MAILTO=example@example.com
*/5 * * * * echo "testing"
이제 crond의 프로세스 ID를 찾으십시오.
user@host1 ~:
$ ps auxww | grep crond
root 9684 0.0 0.0 117280 1296 ? Ss Jul22 0:17 crond
user 36344 0.0 0.0 103240 884 pts/2 S+ 23:01 0:00 grep crond
프로세스 관련 활동을 찾아 strace를 사용하여 크론 드 프로세스에 연결하십시오. strace가 stderr에 쓸 때 stdout으로 리디렉션하고 'mail'을 위해 grepped했습니다.
root@host1 ~:
# strace -fp 9684 -s 1024 -e trace=process 2>&1 | grep mail
[pid 36204] execve("/usr/sbin/sendmail", ["/usr/sbin/sendmail", "-FCronDaemon", "-i", "-odi", "-oem", "-oi", "-t", "-f", "root"], [/* 16 vars */]) = 0
^C
네, 센드 메일입니다.