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 - 09 Nov 2005 00:47 GMT
> 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

Signature
Unemployed English Java programmer
http://jroller.com/page/tackline/
Roedy Green - 09 Nov 2005 03:17 GMT
>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

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
Roedy Green - 09 Nov 2005 03:18 GMT
>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.

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