diff options
author | alecpl <alec@alec.pl> | 2008-06-14 18:09:53 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-06-14 18:09:53 +0000 |
commit | 166b615dbb67d403845b0dc4aed5ed56caf8b6de (patch) | |
tree | c7436f751430bed640ec71336cb4d064fc8fa254 /program/steps/mail | |
parent | ed42ff12e76fd626d6348665cc28415fcc052715 (diff) |
- Added option to disable displaying of attached images below the message body
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index af3f6e72f..a27023f27 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -745,10 +745,14 @@ function rcmail_message_body($attrib) $ctype_primary = strtolower($MESSAGE->structure->ctype_primary); $ctype_secondary = strtolower($MESSAGE->structure->ctype_secondary); - + // list images after mail body - if (get_boolean($attrib['showimages']) && $ctype_primary == 'multipart' && - !empty($MESSAGE->attachments) && !strstr($message_body, '<html')) { + if (get_boolean($attrib['showimages']) + && $CONFIG['inline_images'] + && $ctype_primary == 'multipart' + && !empty($MESSAGE->attachments) + && !strstr($message_body, '<html')) + { foreach ($MESSAGE->attachments as $attach_prop) { if (strpos($attach_prop->mimetype, 'image/') === 0) { $out .= html::tag('hr') . html::p(array('align' => "center"), |