php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #14410 imap_fetch_overview: is missing in_reply_to
Submitted: 2001-12-10 15:10 UTC Modified: 2002-06-13 02:30 UTC
From: tlb at rapanden dot dk Assigned:
Status: Closed Package: IMAP related
PHP Version: 4.1.0 OS: Any
Private report: No CVE-ID: None
 [2001-12-10 15:10 UTC] tlb at rapanden dot dk
Please add in function PHP_FUNCTION(imap_fetch_overview) in file php4/ext/imap/php_imap.c :

if (env->in_reply_to) {
         add_property_string(myoverview, "in_reply_to", env->in_reply_to, 1);
}

It can be tested with this:

$imap = imap_open('{servername:port}', 'login','passwd');
$header = imap_fetch_overview($imap,"1:20",0);
for($i=0;$i<count($header);$i++) {
  print $header[$i]->in_reply_to."\n";
}

Thanks.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-13 02:30 UTC] derick@php.net
This bug has been fixed in CVS. You can grab a snapshot of the
CVS version 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.
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 00:01:27 2024 UTC