[Tickets #2558] NEW: resume compose overwrites Bcc field
bugs@bugs.horde.org
bugs at bugs.horde.org
Mon Sep 5 05:25:05 PDT 2005
DO NOT REPLY TO THIS MESSAGE. THIS EMAIL ADDRESS IS NOT MONITORED.
Ticket URL: http://bugs.horde.org/ticket/?id=2558
-----------------------------------------------------------------------
Ticket | 2558
Created By | Graeme.Wood at ed.ac.uk
Summary | resume compose overwrites Bcc field
Queue | IMP
Version | 4.0.3
State | Unconfirmed
Priority | 1. Low
Type | Bug
Owners |
-----------------------------------------------------------------------
Graeme.Wood at ed.ac.uk (2005-09-05 05:25) wrote:
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.
More information about the bugs
mailing list