[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] php3 with imap?
- Subject: Re: [cobalt-users] php3 with imap?
- From: Rodney Bratcher <rodney@xxxxxxxxxxxx>
- Date: Sat Feb 5 13:23:58 2000
Greetings,
To get php with imap support ...
I followed the instructions from
http://list.cobalt.com/pipermail/cobalt-users/2000-January/002598.html
Except When building php you will need
mail.h, linkage.h, rfc882.h ,and c-client.a
from the imap source
ftp://ftp.cobaltnet.net/pub/products/raq2/SRPMS/imap-4.4-2.src.rpm
rpm -ivh imap-4.4-2.src.rpm then copy the imap .Z file from /home/redhat/SOURCES/
to your working directory ...
gzip -d and untar the imap-4.4 files ... cd into the new imap directory and
make slx
Then copy mail.h and rfc882.h from src/c-client/ to /usr/include/
copy c-client.a from c-client/ to /usr/lib/
copy linkage.h from c-client/ to /usr/include/
cd into your php working dir ..
./configure --with-mysql --with-apache=../apache_1.3.9 --enable-trackvars
--with-imap
( change apache path to your own )
make
make install
Then complete the instruction at
http://list.cobalt.com/pipermail/cobalt-users/2000-January/002598.html
for replacing apache ...
Good Luck
--Rodney
> Looking through the archives, I don't see any clear solution to getting
> php3 to talk to imap. I know it must have been done, as I saw that some
> of you were running horde's IMP... what did you have to do to get the
> IMAP support? Perhaps I didn't install all of the RMS?