Opened 5 years ago
Closed 5 years ago
#1484997 closed Bugs (fixed)
BCC headers are not stripped
| Reported by: | rosali | Owned by: | till |
|---|---|---|---|
| Priority: | 5 | Milestone: | 0.2-alpha |
| Component: | PHP backend | Version: | 0.1.1 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
->steps/mail/func.inc
->function rcmail_deliver_message
->add:
find me ... unset old headers otherwise BCC header is not stripped !!!
$message->_headers = array();
->before:
$sent = smtp_mail($from, $a_recipients, ($foo = $message->txtHeaders($send_headers,false)), $msg_body, $smtp_response);
Also $message->txtHeaders should only have to arguments and not three.
-Roland
Change History (6)
comment:1 follow-up: ↓ 2 Changed 5 years ago by till
- Owner set to till
- Status changed from new to assigned
comment:2 in reply to: ↑ 1 Changed 5 years ago by rosali
Replying to till:
I am gonna try to reproduce.
Can you tell us which MTA it is that you are using?
I user hMailServer 4.x
comment:3 Changed 5 years ago by listy
I can reproduce it on trunk 1325 :(
my MTA is qmail
IMHO severity MUST be set to critical - BCC is one of the main functions of email
comment:4 Changed 5 years ago by simons
I can confirm this bug also, FreeBSD 6.2, MTA is qmail also qmail, roundcube Installed via ports system: version string is "0.1.20080104"
comment:5 Changed 5 years ago by winfriedp
the problem is $message->txtHeaders
since it will overwrite the formerly resettet bcc-variable with it's own stored headers
comment:6 Changed 5 years ago by alec
- Component changed from MIME issue to PHP backend
- Resolution set to fixed
- Status changed from assigned to closed
Fixed in [7ec922fd]

I am gonna try to reproduce.
Can you tell us which MTA it is that you are using?