IMAP Fetching in 3.1.0

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
Richardmax
Posts: 5
Joined: Mon Aug 28, 2017 6:37 pm

IMAP Fetching in 3.1.0

Post 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?
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: IMAP Fetching in 3.1.0

Post 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?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Richardmax
Posts: 5
Joined: Mon Aug 28, 2017 6:37 pm

Re: IMAP Fetching in 3.1.0

Post 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
Post Reply