|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2016-03-02 04:26 UTC] requinix@php.net
 
-Status: Open
+Status: Feedback
  [2016-03-02 04:26 UTC] requinix@php.net
  [2016-03-13 04:22 UTC] php-bugs at lists dot php dot net
  [2016-03-14 04:22 UTC] mayaishikawa116 at gmail dot com
 
-Status: No Feedback
+Status: Closed
  [2016-03-14 04:22 UTC] mayaishikawa116 at gmail dot com
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 06:00:01 2025 UTC | 
Description: ------------ 【PHP version: PHP 5.2】 Currently, the imap_open() function does not allow to connect to an email server when I include braces in password(the third argument). I have already tested some of the password pattern as I describe down bellow. Test script: --------------- ex.1) Failure $password = "abc}def"; imap_open ($mailbox , $username , $password); ex.2) Success $password = "abc{}def"; imap_open ($mailbox , $username , $password);