1

I need a recommendation for a PHP library that is capable of reading email via the IMAP protocol. I cannot use the standard PHP: IMAP library because that requires recompiling PHP for the target web server and I don't have access root access to the web server.

Glenn
  • 7,874
  • 3
  • 29
  • 38

4 Answers4

1

There is a PEAR package that implements the IMAP protocol: Net_IMAP

Davide Gualano
  • 12,813
  • 9
  • 44
  • 65
0

Take a look at the Context.IO PHP Library: https://github.com/contextio/PHP-ContextIO

Context.IO makes your IMAP store available via a REST interface. Really easy to use and the price is right.

Community
  • 1
  • 1
  • On SO, when providing a link to an external site, it is often best to give at least a high level summary of what the contents are in case the external link changes or is deleted. Future SO visitors will still have *something* to work with. – Fluffeh Sep 28 '12 at 09:50
0

If I were you, I would download Squirrelmail and look at its source code.

dj_segfault
  • 11,957
  • 4
  • 29
  • 37
0

I don't know any implementation of IMAP for PHP without using PHPs functions. Maybe you want to use Perl for this: http://search.cpan.org/~conteb/IMAP-Client-0.13/lib/IMAP/Client.pm

Or use a CLI Client when you're on a linux server: http://delog.wordpress.com/2011/05/10/access-imap-server-from-the-command-line-using-openssl/

Stefan
  • 2,028
  • 2
  • 36
  • 53