pajoye                                   Tue, 05 Jan 2010 01:12:18 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=293126

Log:
- [doc] add support for DISABLE_AUTHENTICATOR in imap_open (fix #33500)

Bug: http://bugs.php.net/33500 (Assigned) imap_open() fails when the server 
advertises GSSAPI
      
Changed paths:
    U   php/php-src/branches/PHP_5_3/NEWS
    U   php/php-src/branches/PHP_5_3/ext/imap/php_imap.c

Modified: php/php-src/branches/PHP_5_3/NEWS
===================================================================
--- php/php-src/branches/PHP_5_3/NEWS   2010-01-05 01:05:58 UTC (rev 293125)
+++ php/php-src/branches/PHP_5_3/NEWS   2010-01-05 01:12:18 UTC (rev 293126)
@@ -3,6 +3,7 @@
 ?? ??? 20??, PHP 5.3.3
 - Upgraded bundled libmagic to version 5.03. (Mikko)

+- Added support for DISABLE_AUTHENTICATOR for imap_open. (Pierre)
 - Added missing host validation for HTTP urls inside FILTER_VALIDATE_URL.
   (Ilia)
 - Added stream_resolve_include_path(). (Mikko)

Modified: php/php-src/branches/PHP_5_3/ext/imap/php_imap.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/imap/php_imap.c    2010-01-05 01:05:58 UTC 
(rev 293125)
+++ php/php-src/branches/PHP_5_3/ext/imap/php_imap.c    2010-01-05 01:12:18 UTC 
(rev 293126)
@@ -105,6 +105,7 @@
        ZEND_ARG_INFO(0, password)
        ZEND_ARG_INFO(0, options)
        ZEND_ARG_INFO(0, n_retries)
+       ZEND_ARG_INFO(0, params)
 ZEND_END_ARG_INFO()

 ZEND_BEGIN_ARG_INFO_EX(arginfo_imap_reopen, 0, 0, 2)
@@ -1148,10 +1149,11 @@
        long retries = 0, flags = NIL, cl_flags = NIL;
        MAILSTREAM *imap_stream;
        pils *imap_le_struct;
+       zval *params = NULL;
        int argc = ZEND_NUM_ARGS();

-       if (zend_parse_parameters(argc TSRMLS_CC, "sss|ll", &mailbox, 
&mailbox_len, &user, &user_len,
-               &passwd, &passwd_len, &flags, &retries) == FAILURE) {
+       if (zend_parse_parameters(argc TSRMLS_CC, "sss|lla", &mailbox, 
&mailbox_len, &user, &user_len,
+               &passwd, &passwd_len, &flags, &retries, &params) == FAILURE) {
                return;
        }

@@ -1165,6 +1167,46 @@
                }
        }

+       if (params) {
+               zval **disabled_auth_method;
+
+               if (zend_hash_find(HASH_OF(params), "DISABLE_AUTHENTICATOR", 
sizeof("DISABLE_AUTHENTICATOR"), (void **)&disabled_auth_method) == SUCCESS) {
+                       switch (Z_TYPE_PP(disabled_auth_method)) {
+                               case IS_STRING:
+                                       if (Z_STRLEN_PP(disabled_auth_method) > 
1) {
+                                               mail_parameters (NIL, 
DISABLE_AUTHENTICATOR, (void *)Z_STRVAL_PP(disabled_auth_method));
+                                       }
+                                       break;
+                               case IS_ARRAY:
+                                       {
+                                               zval **z_auth_method;
+                                               int i;
+                                               int nelems = 
zend_hash_num_elements(Z_ARRVAL_PP(disabled_auth_method));
+
+                                               if (nelems == 0 ) {
+                                                       break;
+                                               }
+                                               for (i = 0; i < nelems; i++) {
+                                                       if 
(zend_hash_index_find(Z_ARRVAL_PP(disabled_auth_method), i, (void **) 
&z_auth_method) == SUCCESS) {
+                                                               if 
(Z_TYPE_PP(z_auth_method) == IS_STRING) {
+                                                                       if 
(Z_STRLEN_PP(z_auth_method) > 1) {
+                                                                               
mail_parameters (NIL, DISABLE_AUTHENTICATOR, (void 
*)Z_STRVAL_PP(disabled_auth_method));
+                                                                       }
+                                                               } else {
+                                                                       
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid argument, expect string or 
array of strings");
+                                                               }
+                                                       }
+                                               }
+                                       }
+                                       break;
+                               case IS_LONG:
+                               default:
+                                       php_error_docref(NULL TSRMLS_CC, 
E_WARNING, "Invalid argument, expect string or array of strings");
+                                       break;
+                       }
+               }
+       }
+
        if (IMAPG(imap_user)) {
                efree(IMAPG(imap_user));
        }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to