| | |
| | | <?php |
| | | |
| | | /* |
| | | /** |
| | | +-----------------------------------------------------------------------+ |
| | | | program/steps/mail/show.inc | |
| | | | | |
| | |
| | | $RCMAIL->config->set('prefer_html', $_SESSION['msg_formats'][$mbox_name.':'.$uid]); |
| | | } |
| | | |
| | | $MESSAGE = new rcube_message($uid); |
| | | $MESSAGE = new rcube_message($uid, $mbox_name, intval($_GET['_safe'])); |
| | | |
| | | // if message not found (wrong UID)... |
| | | if (empty($MESSAGE->headers)) { |
| | | rcmail_message_error($uid); |
| | | } |
| | | |
| | | |
| | | // show images? |
| | | rcmail_check_safe($MESSAGE); |
| | |
| | | } |
| | | } |
| | | |
| | | exit; |
| | | // Save preview_pane preference, if not set yet (#1490362) |
| | | if ($RCMAIL->action == 'preview' && !$RCMAIL->config->get('preview_pane')) { |
| | | $RCMAIL->user->save_prefs(array('preview_pane' => true)); |
| | | } |
| | | |
| | | exit; |
| | | |
| | | |
| | | function rcmail_message_attachments($attrib) |