|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-01-18 01:02 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 19:00:02 2025 UTC |
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 */