From 1ae11998589900b4161aa4af59e50f31f64ddc66 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 24 Oct 2011 14:08:53 -0400 Subject: [PATCH] - Improve handling of situation when FETCH returns OK, but no data --- program/include/rcube_imap.php | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 7ffb17a..834a639 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -1962,6 +1962,10 @@ $headers = $this->get_headers($uid, $mailbox); + // message doesn't exist? + if (empty($headers)) + return null; + // structure might be cached if (!empty($headers->structure)) return $headers; @@ -2382,14 +2386,10 @@ $o_part->charset = rcube_imap_generic::getStructurePartCharset($structure, $part); } - // TODO: Add caching for message parts - - if (!$part) { - $part = 'TEXT'; + if ($o_part && $o_part->size) { + $body = $this->conn->handlePartBody($this->mailbox, $uid, true, + $part ? $part : 'TEXT', $o_part->encoding, $print, $fp); } - - $body = $this->conn->handlePartBody($this->mailbox, $uid, true, $part, - $o_part->encoding, $print, $fp); if ($fp || $print) { return true; -- Gitblit v1.9.1