Summary | message sending fails with a error, if all the recipients are in the Bcc: |
Queue | IMP |
Queue Version | FRAMEWORK_3 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | Horde Developers (at) |
Requester | leena.heino (at) uta (dot) fi |
Created | 09/08/2005 (7264 days ago) |
Due | |
Updated | 09/08/2005 (7264 days ago) |
Assigned | 09/08/2005 (7264 days ago) |
Resolved | 09/08/2005 (7264 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
put in 'undisclosed-recipients' is in the To: line, not the
recipients list we pass onto the mail backend. So if sendmail is
somehow trying to extract recipient addresses from the To: header,
you have your sendmail configured incorrectly. Make sure '-t' does
not appear in $conf['mailer']['params']['sendmail_args'] in
horde/config/conf.php.
added to the sendmail's parameters, but it must have happened a long
time ago. I must have had some sort of mixup with php's sendmail
defaults at that time.
in 'undisclosed-recipients' is in the To: line, not the recipients
list we pass onto the mail backend. So if sendmail is somehow trying
to extract recipient addresses from the To: header, you have your
sendmail configured incorrectly. Make sure '-t' does not appear in
$conf['mailer']['params']['sendmail_args'] in horde/config/conf.php.
handled in the sendmail driver rather than in Horde/IMP (especially
since undisclosed-recipients; is perfectly valid - and desired - when
sending via SMTP).
mail from:<>
250 2.1.0 <>... Sender ok
rcpt to:<undisclosed-recipients:;>
553 5.1.3 <undisclosed-recipients:;>... List:; syntax illegal for
recipient addresses
State ⇒ Feedback
Assigned to
value is coming from?
handled in the sendmail driver rather than in Horde/IMP (especially
since undisclosed-recipients; is perfectly valid - and desired - when
sending via SMTP).
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ message sending fails with a error, if all the recipients are in the Bcc:
Queue ⇒ IMP
State ⇒ Unconfirmed
undisclosed-recipients:;. This is a valid construct in message's To:
header, but invalid as a sendmail's command line recipient address.
This invalid command line address causes a error message in compose
window "sendmail returned error code 64" and mail is not sent.
To testi this bug just type in command line:
sendmail undisclosed-recipients:;
Proposed fix would be that you drop the undisclosed-recipients:; from
the list of addresses that are sent to the sendmail program.