Re: [Exim] Bcc problem in Exim 3.35?

Top Pagina
Delete this message
Reply to this message
Auteur: Nico Erfurth
Datum:  
Aan: Eduard Coman
CC: exim-users
Onderwerp: Re: [Exim] Bcc problem in Exim 3.35?
Eduard Coman wrote:
> Hi all,
> Is there a problem with bcc in exim 3.35? I am trying to send an email
> to 2 addresses, one of them normal, the other one in bcc. The headers of
> that email looks like:
>
>  From me@??? Thu Nov 21 15:16:21 2002
> Return-path: <me@???>
> Envelope-to: test1@???
> Received: from [127.0.0.1] (helo=something) by mydomain.com with esmtp
>        id 18Et3L-0007Gi-00     ; Thu, 21 Nov 2002 15:16:12 +0000
> To: test1@???
> Bcc: test2@???
> Subject: test
> Message-Id: <E18Et3L-0007Gi-00@???>
> From: me@???
> Date: Thu, 21 Nov 2002 15:16:12 +0000

>
> So, as you can see the bcc is not so "blind"... Did I miss something?
> Thanks,
> Edy


Most probably, Exim will NOT delete the Bcc:-header, if you want to
inject a message like this, use a real SMTP-Connection, or batched SMTP.

like this

exim -bS
MAIL FROM: me@???
RCPT TO: test1@???
RCPT TO: test2@???
DATA

From me@??? Thu Nov 21 15:16:21 2002
Return-path: <me@???>
Envelope-to: test1@???
To: test1@???
Subject: test
Message-Id: <E18Et3L-0007Gi-00@???>
From: me@???
Date: Thu, 21 Nov 2002 15:16:12 +0000

Text
.


ciao