6.0.0-beta1
8/7/25

[#2558] resume compose overwrites Bcc field
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

History
09/08/2005 05:59:20 AM Michael Slusarz Comment #2
State ⇒ Resolved
Reply to this comment
Fixed in HEAD and 4.0.4.
09/05/2005 01:57:04 PM Chuck Hagenbuch Assigned to Michael Slusarz
 
09/05/2005 12:25:04 PM Graeme (dot) Wood (at) ed (dot) ac (dot) uk Comment #1
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ resume compose overwrites Bcc field
Queue ⇒ IMP
Reply to this comment
There is a bug in IMP H3 4.0.3 (but I think it applies to the latest

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.


Saved Queries