IMAP4.6 のインストール
1999-11-06
$ tar zxf imap-4.6.tar.Z アーカイブを展開
$ cd imap-4.6
$ make sl5 shadown パスワード対応・エクストラライブラリ無し
$ su インストールするので root になる
# mv /usr/sbin/imapd /usr/sbin/imapd-org 元の IMAP プログラムを退避
# cp imapd/imapd /usr/sbin/. inetd が参照するので /usr/sbin/ にコピー
# grep imap /etc/services プロトコルファイルを確認
imap2 143/tcp
imap2 143/udp
# grep imap /etc/inetd.conf inetd から呼ばれるので inetd.conf を確認
imap2 stream tcp nowait root /usr/sbin/tcpd imapd
# ps -ax | grep inetd inetd の pid を確認
76 ? S 0:02 /usr/sbin/inetd
11771 p1 S 0:00 grep inetd
# kill -HUP 76 inetd を再起動