Lee Derbyshire [MVP]
Guest
|
Posted:
Thu Nov 25, 2004 3:19 pm Post subject:
Re: again BCC |
|
|
"Потехин Илья" <ilyapotekhin@yandex.ru> wrote in message
news:edti3np0EHA.1300@TK2MSFTNGP14.phx.gbl...
| Quote: | Greetings All!
I cant get bcc field from journaled message. Let me explain situation.
i have 4 users with exchange maiboxes :
"user01","user02","user03","user04".
i enable message journaling to mailbox of "user04" user.
then i add follow parameter to registry
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeTransport\Pa
rameters]
"JournalBCC"=dword:00000001
and reboot the system
then i send a mail with subject "hello" from "user01" to "user02" and
Blind
Carbon Copy (BCC) to "user03"
after that i go to the "user04" mailbox and i see sended message.
I try to get all properties of this message - here a WebDav request:
?xml version='1.0'?
D:searchrequest xmlns:D='DAV:'
D:sql
SELECT * FROM 'http://mydomain/exchange/inbox/hello.eml'
WHERE 'DAV:ishidden' = false
AND 'DAV:isfolder' = false
/D:sql
/D:searchrequest
i get a lot of properties but these not found
"urn:schemas:mailheader:bcc"
"urn:schemas:httpmail:bcc"
"urn:schemas:httpmail:displaybcc"
so i cant get bcc recipients but i add JournalBCC parameter to registry.
What i do wrong? Please help. I use Exchange Server 2003 and have tested
on
3 separate Exchange Servers
with same results.
|
Using SELECT * does not return all of the item properties, only a default
set, which (it would appear) does not include the bcc fields you are looking
for. To get fields not returned by *, you will have to ask for them
explicitly:
SELECT
"urn:schemas:mailheader:bcc","urn:schemas:httpmail:bcc","urn:schemas:httpmail:displaybcc"
FROM
etc.
Lee.
--
___________________________________
Outlook Web Access for PDA and WAP:
www.leederbyshire.com
___________________________________ |
|