| Summary | resume compose overwrites Bcc field |
| Queue | IMP |
| Queue Version | 4.0.3 |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | slusarz (at) horde (dot) org |
| Requester | Graeme.Wood (at) ed (dot) ac (dot) uk |
| Created | 9/5/05 (7522 days ago) |
| Due | |
| Updated | 9/8/05 (7519 days ago) |
| Assigned | |
| Resolved | 9/8/05 (7519 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ resume compose overwrites Bcc field
Queue ⇒ IMP
CVS), in that if you resume a message from a saved draft containing a Bcc
field, then the Bcc address list is dropped. It is caused by this bit of
code:
if (empty($reloaded)) {
$header['bcc'] = MIME::addrArray2String($identity->getBccAddresses());
}
Modifying it to be:
if (empty($reloaded) && empty($header['bcc'])) {
$header['bcc'] = MIME::addrArray2String($identity->getBccAddresses());
}
fixes it though this may not be the best way to deal with it.