ずーっと気がつかなかったのですが、システムにpostfixをインストールした結果、
mythtv宛にかなりメールが飛んでいたことが判明しました。汗。(6万通ぐらい。)
内容を調べてみるとどうやらmythtvユーザのcrontabが失敗しているのが原因でした。
(しかも1分に一度行われているので1分後とにメールが飛んでいるのでした。汗。)
参考までにですが、mythtvユーザのcrontabは以下の通りになります。
[mythtv@kororin mythdora]$ crontab -l
#Nightly dump of mythconverg database
5 3 * * * . /etc/mythdora.conf; if [ $dbdump == 'enabled' ]; then /usr/share/mythdora/dorabackup -dump; fi
#Nightly check of the mysql tables
15 3 * * * . /etc/mythdora.conf; if [ $dboptimize == 'enabled' ]; then sudo /usr/share/mythdora/mythdbcheck.sh; fi
#Nightly IMDB lookup for video files
0 2 * * * . /etc/mythdora.conf; if [ $imdbupdater == 'enabled' ]; then /usr/share/mythdora/extras/imdb-bulk-update.pl -N -Fileup -Dupskip; fi
#Minutely check of the backend
* * * * * . /etc/mythdora.conf; if [ $becheck == 'enabled' ]; then /usr/share/mythdora/becheck.sh; fi
30 05 * * * mythfilldatabase --refresh-all --max-days 1
で、以下の用に編集してみました。
[mythtv@kororin mythdora]$ crontab -l
#Nightly dump of mythconverg database
5 3 * * * . /etc/mythdora.conf; if [ $dbdump == 'enabled' ]; then /usr/share/mythdora/dorabackup -dump; fi
#Nightly check of the mysql tables
15 3 * * * . /etc/mythdora.conf; if [ $dboptimize == 'enabled' ]; then sudo /usr/share/mythdora/mythdbcheck.sh; fi
#Nightly IMDB lookup for video files
0 2 * * * . /etc/mythdora.conf; if [ $imdbupdater == 'enabled' ]; then /usr/share/mythdora/extras/imdb-bulk-update.pl -N -Fileup -Dupskip; fi
#Minutely check of the backend
* * * * * . /etc/mythdora.conf; if [ "$becheck" == 'enabled' ]; then /usr/share/mythdora/becheck.sh; fi
30 05 * * * mythfilldatabase --refresh-all --max-days 1
まぁ、なんてことはありません^^;