diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-02-18 19:15:36 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-02-18 19:15:36 +0000 |
| commit | 28a182dc6451049afc8d73db245954ebb6874850 (patch) | |
| tree | ba2f526780cbf6a216ef2f112ebb8112b29cbcba /roundcubemail/program/steps/mail/show.inc | |
| parent | a4a15d8311a72c7aab2b79ef666ec66f5181c74b (diff) | |
- Fix html body washing on reply/forward + fix attachments handling (#1485676)
git-svn-id: https://svn.roundcube.net/trunk@2301 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/show.inc')
| -rw-r--r-- | roundcubemail/program/steps/mail/show.inc | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/roundcubemail/program/steps/mail/show.inc b/roundcubemail/program/steps/mail/show.inc index 7ae0ae000..fd31fa91c 100644 --- a/roundcubemail/program/steps/mail/show.inc +++ b/roundcubemail/program/steps/mail/show.inc @@ -43,23 +43,7 @@ if ($_GET['_uid']) { $mbox_name = $IMAP->get_mailbox_name(); // show images? - $show_images = $RCMAIL->config->get('show_images'); - if(!$MESSAGE->is_safe - && !empty($show_images) - && $MESSAGE->has_html_part()) - { - switch($show_images) { - case '1': // known senders only - $CONTACTS = new rcube_contacts($DB, $_SESSION['user_id']); - if ($CONTACTS->search('email', $MESSAGE->sender['mailto'], true, false)->count) { - $MESSAGE->set_safe(true); - } - break; - case '2': // always - $MESSAGE->set_safe(true); - break; - } - } + rcmail_check_safe($MESSAGE); // calculate Etag for this request $etag = md5($MESSAGE->uid.$mbox_name.session_id() |
