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 | 09/05/2005 (7276 days ago) |
Due | |
Updated | 09/08/2005 (7273 days ago) |
Assigned | |
Resolved | 09/08/2005 (7273 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.