diff options
author | alecpl <alec@alec.pl> | 2011-07-04 18:56:54 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-07-04 18:56:54 +0000 |
commit | 8bce65524675bb0ab95819fe8214f4390c2cf9ea (patch) | |
tree | 7d0ed5bd7de69ef3738f1992a74bfeb1a71c3809 /program/include/rcube_imap.php | |
parent | ecb51cc8a6d4d9491659f370a6b46b1ec42014f5 (diff) |
- Fix lack of Cc and Reply-To headers on messages list, add them to default headers list (#1487989)
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r-- | program/include/rcube_imap.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index c2a4a0dc2..411be5202 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -83,16 +83,14 @@ class rcube_imap /** * All (additional) headers used (in any way) by Roundcube - * Not listed here: DATE, FROM, TO, SUBJECT, CONTENT-TYPE, LIST-POST + * Not listed here: DATE, FROM, TO, CC, REPLY-TO, SUBJECT, CONTENT-TYPE, LIST-POST * (used for messages listing) are hardcoded in rcube_imap_generic::fetchHeaders() * * @var array * @see rcube_imap::fetch_add_headers */ private $all_headers = array( - 'REPLY-TO', 'IN-REPLY-TO', - 'CC', 'BCC', 'MESSAGE-ID', 'CONTENT-TRANSFER-ENCODING', |