Page 1 of 1

IMAP Fetching in 3.1.0

Posted: Sun Apr 26, 2020 7:40 pm
by Richardmax
Hi,

IMAP Fetching was enabled in the last version 2.8.x but now show "disabled - PHP is not compiled with IMAP support" but I have php-fpm with support '--with-imap' '--with-imap-ssl'

Anybody know why?

Re: IMAP Fetching in 3.1.0

Posted: Mon Apr 27, 2020 7:41 am
by Klemen
What do you get if you save this as test.php and run it?

Code: Select all

<?php
if (function_exists('imap_open')) {
    echo "IMAP Enabled";
} else {
    echo "IMAP Disabled";
}
Do you have

Code: Select all

extension=imap
uncommented in your php.ini file?

Do you see the imap section in your phpinfo?

Re: IMAP Fetching in 3.1.0

Posted: Mon Apr 27, 2020 5:55 pm
by Richardmax
You are right. I have dynamic PHP and forgot to configure the new subdomain :roll:

Now It works :lol:

thank you very much