| | |
| | | <?php |
| | | |
| | | /* |
| | | /** |
| | | +-----------------------------------------------------------------------+ |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2008-2014, The Roundcube Dev Team | |
| | |
| | | |
| | | $this->set_safe((intval($_GET['_safe']) || $_SESSION['safe_messages'][$this->folder.':'.$uid])); |
| | | $this->opt = array( |
| | | 'safe' => $this->is_safe, |
| | | 'safe' => $this->is_safe, |
| | | 'prefer_html' => $this->app->config->get('prefer_html'), |
| | | 'get_url' => $this->app->url(array( |
| | | 'action' => 'get', |
| | | 'mbox' => $this->storage->get_folder(), |
| | | 'uid' => $uid)) |
| | | 'get_url' => $this->app->url(array( |
| | | 'action' => 'get', |
| | | 'mbox' => $this->folder, |
| | | 'uid' => $uid)) |
| | | ); |
| | | |
| | | if (!empty($this->headers->structure)) { |
| | |
| | | // notify plugins and let them analyze this structured message object |
| | | $this->app->plugins->exec_hook('message_load', array('object' => $this)); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Return a (decoded) message header |
| | |
| | | return $this->headers->get($name, !$raw); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Set is_safe var and session data |
| | | * |
| | |
| | | { |
| | | $_SESSION['safe_messages'][$this->folder.':'.$this->uid] = $this->is_safe = $safe; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Compose a valid URL for getting a message part |
| | |
| | | else |
| | | return false; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Get content of a specific part of this message |
| | |
| | | NULL, $fp, $skip_charset_conv, $max_bytes, $formatted); |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Get content of a specific part of this message |
| | |
| | | return $body; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Format text message part for display |
| | | * |
| | |
| | | |
| | | return $body; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Determine if the message contains a HTML part. This must to be |
| | |
| | | return false; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Determine if the message contains a text/plain part. This must to be |
| | | * a real part not an attachment (or its part) |
| | |
| | | return false; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Return the first HTML part of this message |
| | | * |
| | |
| | | } |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Return the first text part of this message |
| | |
| | | return null; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Checks if part of the message is an attachment (or part of it) |
| | | * |
| | |
| | | |
| | | return false; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Read the message structure returend by the IMAP server |
| | |
| | | $related_part = $p; |
| | | else if ($sub_mimetype == 'text/plain' && !$plain_part) |
| | | $plain_part = $p; |
| | | else if ($sub_mimetype == 'text/html' && !$html_part) |
| | | else if ($sub_mimetype == 'text/html' && !$html_part) { |
| | | $html_part = $p; |
| | | $this->got_html_part = true; |
| | | } |
| | | else if ($sub_mimetype == 'text/enriched' && !$enriched_part) |
| | | $enriched_part = $p; |
| | | else { |
| | |
| | | continue; |
| | | |
| | | if ($part_mimetype == 'text/html' && $mail_part->size) { |
| | | $got_html_part = true; |
| | | $this->got_html_part = true; |
| | | } |
| | | |
| | | $mail_part = $plugin['structure']; |
| | |
| | | // MS Outlook sends sometimes non-related attachments as related |
| | | // In this case multipart/related message has only one text part |
| | | // We'll add all such attachments to the attachments list |
| | | if (!isset($got_html_part) && empty($inline_object->content_id)) { |
| | | if (!isset($this->got_html_part)) { |
| | | $this->attachments[] = $inline_object; |
| | | } |
| | | // MS Outlook sometimes also adds non-image attachments as related |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Fill aflat array with references to all parts, indexed by part numbers |
| | | * |
| | |
| | | for ($i=0; $i<count($part->parts); $i++) |
| | | $this->get_mime_numbers($part->parts[$i]); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Decode a Microsoft Outlook TNEF part (winmail.dat) |
| | |
| | | |
| | | return $parts; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Parse message body for UUencoded attachments bodies |
| | |
| | | { |
| | | return rcube_mime::format_flowed($text, $length); |
| | | } |
| | | |
| | | } |