summaryrefslogtreecommitdiff
path: root/program/steps/mail/show.inc
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-02-18 19:15:36 +0000
committeralecpl <alec@alec.pl>2009-02-18 19:15:36 +0000
commitec603f7da6e0dcae398169efe03b52d199427d11 (patch)
treec35b4a549989c7ba6a22d42d195db6cfceea84e0 /program/steps/mail/show.inc
parentf9a4bc4dfa2ef6f8b74f32afb61f2e43d26781e2 (diff)
- Fix html body washing on reply/forward + fix attachments handling (#1485676)
Diffstat (limited to 'program/steps/mail/show.inc')
-rw-r--r--program/steps/mail/show.inc18
1 files changed, 1 insertions, 17 deletions
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc
index 7ae0ae000..fd31fa91c 100644
--- a/program/steps/mail/show.inc
+++ b/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()