I'm trying to install Vtiger CRM on Ubuntu. This require IMAP. How to install PHP IMAP for php5-fpm?
Asked
Active
Viewed 3.5k times
2 Answers
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
- 714
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
- 299,380