無駄なメールが来る
一応、postfix依存とはしていますが、純正玄箱にメール鯖を作れば必ず起きると思います。
だって、純正玄箱に最初から入っているスクリプトに問題があるんですもの。
ということで、無駄なメールが来ると鬱陶しいですので来ないようにしましょう。
「一応、postfix依存」
うちではpostfixを採用しているのでこのような表現になっています。
だって、メール鯖依存なのか、ソフト依存なのか、問題を仕分けるのが「面倒臭い(を」から。
傾向と対策 ・原因 ・対策
関連ページ ・postfix ・postfix with smtp auth
postfixをインストールするとcron-daemonから、以下のような短いメールが毎日送られてくる。
run-parts: /etc/cron.daily/passwd exited with return code 2/etc/cron.daily/passwdが「標準出力に文字を表示しているため」なんだろうけど・・・
スクリプトを見てみると・・・
# vi /etc/cron.daily/passwd ┃#!/bin/sh ┃# ┃# cron.daily script to check integrity of the password and group files ┃ ┃test -f /usr/sbin/pwck || exit 0 ┃ ┃pwck -q -r ┃grpck -rとなっています。
# vi /etc/cron.daily/passwd ┃#!/bin/sh ┃# ┃# cron.daily script to check integrity of the password and group files ┃ ┃PATH=/bin:/usr/bin:/sbin:/usr/sbin ┃ ┃test -f /usr/sbin/pwck || exit 0 ┃ ┃pwck -q -r ┃grpck -r >/dev/null ┃ ┃exit 0と修正。
戻るなら押せ!