Changeset 7003206 in github
- Timestamp:
- Sep 3, 2008 7:41:05 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- c8ae249
- Parents:
- 97e9d16
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/mail/func.inc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r5df0ad0 r7003206 6 6 - Add RFC2231 header value continuations support for attachment 7 7 filenames + hack for servers that not support that feature 8 - Fix Reply-To header displaying (#1485314) 8 9 9 10 2008/09/02 (thomasb) -
program/steps/mail/func.inc
r876b15d r7003206 743 743 744 744 // show these headers 745 $standard_headers = array('subject', 'from', 'organization', 'to', 'cc', 'bcc', 'reply -to', 'date');745 $standard_headers = array('subject', 'from', 'organization', 'to', 'cc', 'bcc', 'replyto', 'date'); 746 746 747 747 foreach ($standard_headers as $hkey) … … 750 750 continue; 751 751 752 if ($hkey =='date' && !empty($headers[$hkey]))752 if ($hkey == 'date') 753 753 { 754 754 if ($PRINT_MODE) … … 757 757 $header_value = format_date($headers[$hkey]); 758 758 } 759 else if (in_array($hkey, array('from', 'to', 'cc', 'bcc', 'reply-to'))) 759 else if ($hkey == 'replyto') 760 { 761 if ($headers['replyto'] != $headers['from']) 762 $header_value = Q(rcmail_address_string($headers['replyto'], null, true, $attrib['addicon']), 'show'); 763 else 764 continue; 765 } 766 else if (in_array($hkey, array('from', 'to', 'cc', 'bcc'))) 760 767 $header_value = Q(rcmail_address_string($headers[$hkey], null, true, $attrib['addicon']), 'show'); 761 768 else
Note: See TracChangeset
for help on using the changeset viewer.
