6

I'm trying to install Vtiger CRM on ubuntu. This require IMAP. How to install PHP IMAP for php5-fpm?

user3207076
  • 93
  • 1
  • 2
  • 4

3 Answers3

20

Carry out the following:

apt-get install php5-imap

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

php5enmod imap

Then bounce apache:

service apache2 restart

Done.

John Simmonds
  • 613
  • 6
  • 9
4

The imap library is in php5-imap and that applies to all sorts of PHP (cli, cgi, fpm, etc). To install:

sudo apt-get install php5-imap
Oli
  • 289,791
  • 117
  • 680
  • 835
-2

It in the repositories:

$ apt-cache search php5-fpm
php5-fpm - server-side, HTML-embedded scripting language (FPM-CGI binary)

So, use apt:

$ sudo apt-get install php5-fpm
OrangeTux
  • 5,141
  • 8
  • 34
  • 57