From: [EMAIL PROTECTED] Operating system: solaris 8 PHP version: 4.3.0 PHP Bug Type: IMAP related Bug description: imap extension doesn't include gss authentication mechanism
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 bug report at http://bugs.php.net/?id=21687&edit=1 -- Try a CVS snapshot: http://bugs.php.net/fix.php?id=21687&r=trysnapshot Fixed in CVS: http://bugs.php.net/fix.php?id=21687&r=fixedcvs Fixed in release: http://bugs.php.net/fix.php?id=21687&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=21687&r=needtrace Try newer version: http://bugs.php.net/fix.php?id=21687&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=21687&r=support Expected behavior: http://bugs.php.net/fix.php?id=21687&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=21687&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=21687&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=21687&r=globals PHP 3 support discontinued: http://bugs.php.net/fix.php?id=21687&r=php3 Daylight Savings: http://bugs.php.net/fix.php?id=21687&r=dst IIS Stability: http://bugs.php.net/fix.php?id=21687&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=21687&r=gnused