|
PHPにてIMAP関数を使えるように設定する(Vine Linux 2.6)
|
1.IMAPの動作確認
# rpm -ivh imap-2001a-10vl3.i316.rpm
(フルインストール選択時は既にインストールされています。)
# vi /etc/inetd.conf
:
#imap stream tcp nowait root /usr/sbin/tcpd imapd
コメントアウト#を解除
# ps -aux | grep inetd (inetdのpidを調べる)
# kill -HUP pid
# telnet localhost imap
*OK ・・・ と表示されればOKです。
2.PHPの再コンパイル
# ./configure --with-apxs=/usr/sbin/apxs --enable-mbstring --with-imap=/usr/lib --with-imap-ssl=/usr/share/ssl
(Vine Linux 2.6 は MySQLには標準で対応)
# make
# make install
3.Apacheを再起動
# /etc/rc.d/init.d/httpd restart |
|
|
|
|