Finding BCC receipients  
Author Message
tobhamlet





PostPosted: 2005-11-9 7:04:00 Top

java-programmer, Finding BCC receipients Is there a way to see if a user (having sent you an email) has bcc'd
that email to anyone else? Sun Java WebMail is being used.

Mark
******

 
Thomas Hawtin





PostPosted: 2005-11-9 8:48:00 Top

java-programmer >> Finding BCC receipients tobhamlet wrote:
> Is there a way to see if a user (having sent you an email) has bcc'd
> that email to anyone else? Sun Java WebMail is being used.

It wouldn't be very blind if it were.

IIRC, the actual recipients of an e-mail are contained in an envelope
(not the header). Initially the header will contain all the recipients.
As the mail is routed from server to server, copies will go there
separate ways with recipient divided up. Eventually it will end up in
someones mailbox, without envelope. You can search ietf.org for the
relevant SMTP and POP3 RFCs.

Of course, if you compromised one of the servers on the path, you could
look at the recipients present at that point.

Tom Hawtin
--
Unemployed English Java programmer
http://jroller.com/page/tackline/
 
Roedy Green





PostPosted: 2005-11-9 11:17:00 Top

java-programmer >> Finding BCC receipients On 8 Nov 2005 15:03:39 -0800, "tobhamlet" <email***@***.com> wrote,
quoted or indirectly quoted someone who said :

>Is there a way to see if a user (having sent you an email) has bcc'd
>that email to anyone else? Sun Java WebMail is being used.

Use JavaMail or write some code that plays with the SMTP socket on its
own or use some of the SMTP code floating around prior to JavaMail.
See http://mindprod.com/jgloss/javamail.html
http://mindprod.com/jgloss/smtp.html

--
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
 
 
Roedy Green





PostPosted: 2005-11-9 11:18:00 Top

java-programmer >> Finding BCC receipients On 8 Nov 2005 15:03:39 -0800, "tobhamlet" <email***@***.com> wrote,
quoted or indirectly quoted someone who said :

>Is there a way to see if a user (having sent you an email) has bcc'd
>that email to anyone else? Sun Java WebMail is being used.

I totally misread your question. The answer is NO. That's why they
call it BLIND cc.

The names of the other recipients are nowhere in the header.
--
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.