Dutch PHP Conference 2025 - Call For Papers
add a note

User Contributed Notes 7 notes

up
-1
jevon at jevon dot org
9 years ago
On Ubuntu 14.04+, you need to first install with apt-get:

apt-get install php5-imap

However it's not enabled by default so enable it with:

php5enmod imap
up
-1
kuz-alex at mail dot ru
5 years ago
Ubuntu 18.04

sudo apt-get install php-imap
up
-1
LZZ
15 years ago
On Gentoo:

edit /etc/make.conf and include imap to the USE flags,
then run

emerge php
up
-1
Josecito
16 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).
up
-4
panchtatvam at gmail dot com
10 years ago
For Fedora 20
===========

Install php-imap:
sudo yum install php-imap

Then restart httpd :
sudo service httpd restart
up
-5
marcin at koziarz dot pl
11 years 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.
up
-5
dlaplant at integresystems dot com
16 years ago
For rhel4 add the libc-client-devel package
To Top