ID: 21687 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type: IMAP related Operating System: solaris 8 PHP Version: 4.3.0 New Comment:
This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2003-01-16 07:58:35] [EMAIL PROTECTED] PHP doesn't include the gss authentication mechanism when building IMAP w/kerberos 5. Even if the c-client has been built with krb5/gss support, w/o the gss auth mechanism, php's IMAP support won't attempt kerberos authentication. This diff should help.. --- php_imap.c.orig Thu Jan 16 08:44:59 2003 +++ php_imap.c Thu Jan 16 08:45:51 2003 @@ -418,4 +418,7 @@ mail_link(&dummydriver); /* link in the dummy driver */ +#ifdef HAVE_IMAP_KRB + auth_link(&auth_gss); /* link in the gss authenticator */ +#endif #ifndef PHP_WIN32 auth_link(&auth_log); /* link in the log authenticator */ ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=21687&edit=1