diff options
author | thomascube <thomas@roundcube.net> | 2007-11-06 18:24:25 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-11-06 18:24:25 +0000 |
commit | e4867ea740cd0d03acb65fdc7a93f7764cc711b2 (patch) | |
tree | bc7328f4a8573a212462affb134ae8f5072c8244 /program/lib/imap.inc | |
parent | ff0566bce5e960143a954e2c1356894a31e4f739 (diff) |
Fix bugs #1484555, #1484646 and #1484639
Diffstat (limited to 'program/lib/imap.inc')
-rw-r--r-- | program/lib/imap.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/imap.inc b/program/lib/imap.inc index 05b1c00e1..264c3af50 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -1240,7 +1240,7 @@ function iil_C_FetchHeaders(&$conn, $mailbox, $message_set, $uidfetch=false){ /* FETCH date,from,subject headers */ $key="fh".($c++); $prefix=$uidfetch?" UID":""; - $request=$key.$prefix." FETCH $message_set (BODY.PEEK[HEADER.FIELDS (DATE FROM TO SUBJECT REPLY-TO IN-REPLY-TO CC BCC CONTENT-TRANSFER-ENCODING CONTENT-TYPE MESSAGE-ID REFERENCE)])\r\n"; + $request=$key.$prefix." FETCH $message_set (BODY.PEEK[HEADER.FIELDS (DATE FROM TO SUBJECT REPLY-TO IN-REPLY-TO CC BCC CONTENT-TRANSFER-ENCODING CONTENT-TYPE MESSAGE-ID REFERENCES)])\r\n"; if (!fputs($fp, $request)) return false; do{ @@ -1295,7 +1295,7 @@ function iil_C_FetchHeaders(&$conn, $mailbox, $message_set, $uidfetch=false){ $result[$id]->encoding = str_replace("\n", " ", $headers["content-transfer-encoding"]); $result[$id]->ctype = str_replace("\n", " ", $headers["content-type"]); $result[$id]->in_reply_to = ereg_replace("[\n<>]",'', $headers['in-reply-to']); - $result[$id]->reference = $headers["reference"]; + $result[$id]->references = $headers["references"]; list($result[$id]->ctype, $ctype_add) = explode(";", $headers["content-type"]); |