1

After upgrading from openSuSe Leap 42.3 to 15.0 PHP Software using php7-imap does not work any more since openSuSe ditched php7-imap php7-imap extension missing since 7.2.3.

Apparently there are not even community packages for the current 7.2.5 version.

Can I find a working imap.so for openSuSe Leap 15.0 elsewhere?

Arigion
  • 138
  • 7
  • This might be a dumb question, but what happens when you manually download and install the 42.3 version? https://software.opensuse.org/package/php7-imap – Rob Pearson May 29 '18 at 01:43

1 Answers1

-1

Why not just download the PHP source code and compile the imap extension yourself like I just did. You will need to install the php7-devel, libc-client, and ssl-devel, and imap-devel. FURTHER the imap libs are put in lib64 but the PHP src is looking for them in lib. So create symlinks. It seems to work just fine.

Nick S
  • 1