FreeBSDで毎日root宛に届くレポートメールを通常のメーラーで受信
posted by jun-g at Sun, 15 Apr 2007 01:39 JST
よくやり方を忘れるので自分用にメモ。レポートメールっていうのは「xxx run output」というSubjectのメールの事。
まずはroot宛のメールを自分宛に届くように変更。/etc/aliasesを開いて、
postmaster: root
の下に
root: jun-g
を追加。これでroot宛のメールは全てjun-g宛に届くようになる。追加したら/etc/aliases.dbを再作成するために以下のコマンドを実行。
# newaliases
次にPOP3サーバのqpopperをportsからインストール(mail/qpopper)。OptionsはデフォルトのままでOK。インストールが完了したら/etc/inetd.confの
#pop3 stream tcp nowait root /usr/local/libexec/popper popper
の部分を
pop3 stream tcp nowait root /usr/local/libexec/qpopper qpopper -s
に変更してinetdを再起動。inetdを使用していない場合は/etc/rc.confに
inetd_enable="YES"
と追記して
# /etc/rc.d/inetd start
でinetdが起動する。後は普段使用しているメーラーに受信用アカウントの設定を追加して、問題なく受信できればOK。