apt-get install php5-imap
Works well also.... Enjoy
marcin at koziarz dot pl ¶
1 month ago
In ArchLinux, a php package provides this module, but it is disabled by default.
Simply uncomment a line (remove semicolon) in /etc/php/php.ini:
;extension=imap.so
to
extension=imap.so
and then, restart PHP.
LZZ ¶
4 years ago
On Gentoo:
edit /etc/make.conf and include imap to the USE flags,
then run
emerge php
AlexJ ¶
4 years ago
FreeBSD:
Install c-client only to support IMAP-SSL
cd /usr/ports/mail/cclient/ && make install clean
Josecito ¶
5 years ago
To install the IMAP module on Red Hat Linux Enterprise 4 (RHEL4):
- Open a terminal window
- If you're not root, become root with su
- type:
RPM -i php-imap
(RPM will download, install and resolve dependencies)
- restart your web server with:
service httpd restart
I hope this helps newbies (like me).
