diff options
author | alecpl <alec@alec.pl> | 2010-12-09 19:10:44 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-12-09 19:10:44 +0000 |
commit | 3ee5a7200afc62d8eda2c0ce77743af4951147a3 (patch) | |
tree | cdb9d8875a9a315ad2dfa5670c8526bdd43e2a96 /program/steps/mail/func.inc | |
parent | c2c820cbf4ec226b5508357bcb55a5f28aaf8805 (diff) |
- Improved Mail-Reply-To and Mail-Followup-To headers handling
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 9e485eb36..750cf6f61 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -927,10 +927,14 @@ function rcmail_message_headers($attrib, $headers=NULL) else $header_value = trim($IMAP->decode_header($value)); - $output_headers[$hkey] = array('title' => rcube_label($hkey), 'value' => $header_value, 'raw' => $value); + $output_headers[$hkey] = array( + 'title' => rcube_label(preg_replace('/(^mail-|-)/', '', $hkey)), + 'value' => $header_value, 'raw' => $value + ); } - $plugin = $RCMAIL->plugins->exec_hook('message_headers_output', array('output' => $output_headers, 'headers' => $MESSAGE->headers)); + $plugin = $RCMAIL->plugins->exec_hook('message_headers_output', + array('output' => $output_headers, 'headers' => $MESSAGE->headers)); // compose html table $table = new html_table(array('cols' => 2)); |