| Summary | Compound header fields get truncated |
| Queue | Ingo |
| Queue Version | HEAD |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | |
| Requester | selsky (at) columbia (dot) edu |
| Created | 08/02/2006 (7043 days ago) |
| Due | |
| Updated | 04/22/2014 (4223 days ago) |
| Assigned | |
| Resolved | 08/22/2006 (7023 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Compound header fields get truncated
Queue ⇒ Ingo
rules like ^TO_, ^TO, etc.
I added lines to ingo/config/fields.php like this:
'To,Cc,Bcc,Resent-To' => array(
'label' => _("Destination (To,Cc,Bcc,etc)"),
'type' => INGO_STORAGE_TYPE_HEADER
),
'From,Sender,Reply-To,Resent-From' => array(
'label' => _("Source (From,Reply-To,etc)"),
'type' => INGO_STORAGE_TYPE_HEADER
),
'To,Cc,Bcc,Resent-To,From,Sender,Reply-To,Resent-From' => array(
'label' => _("Participant (From,To,etc)"),
'type' => INGO_STORAGE_TYPE_HEADER
),
This works fine in Ingo 1.0.2, but in FRAMWORK_3/HEAD the headers
"To,Cc,Bcc,Resent-To" get turned into "To, c, cc, esent-To". Note the
missing first letter of each header after the first.
This seems related to the fix for
bug 3313.