@[deleted]:
"IMAP doesn't exist. PHP must be compiled with IMAP enabled."
Make sure thatyou have the IMAP plug-in module installed and enabled in your php.ini.
To ensure that it is enabled you can create a page that has the following:
<?php
phpinfo();
?>
Look for an IMAP section. If you do not see an IMAP section then your PHP is not compiled to utilize the optional php imap addon.
Instructions on how to make this work vary by OS.
For Linux try:
Install the php5-imap package. This can be as simple as:
apt-get install php5-imap
Then check your php.ini and make sure you see this:
extension=imap.so
For Windows:
It should already be compiled in, and you will just need to enable it. Edit your php.ini and add or edit
extension=imap.dll
or
extension=php_imap.dll