Ureader.com  
Microsoft software help and Community
   home   |   control panel login   |   archive   |  
 
Exchange
2000.active.directory
2000.admin
2000.announcements
2000.app.conversion
2000.applications
2000.clients
2000.clustering
2000.connectivity
2000.development
2000.documentation
2000.general
2000.information.store
2000.interop
2000.kms
2000.misc
2000.protocols
2000.realtime.collabo.
2000.setup
2000.transport
2000.win2000
admin
application.conversion
applications
clients
clustering
connectivity
design
development
misc
mobility
setup
tools
  
 
date: 15 Dec 2005 01:40:16 -0800,    group: microsoft.public.exchange2000.development        back       


How to get Reply/Forwarded status and Date   
Hello Everybody,

While developing small application in .NET using WebDav to access mails
from Exchange server, i didn't find any information on how the server
stores the Reply/Forwarded status and timestamp for the replied and
forwarded mails.

While using "Outlook Web Access", Outlook etc we get a tag for
forwarded/replied messages in the headers as:
"You forwarded this message on 12/13/2005 6:01 PM."
"You replied on 12/13/2005 5:38 PM."

Can anybody help about how the server stores these status flags and
timestamps.

Regards
Sarabjit Rupaal
date: 15 Dec 2005 01:40:16 -0800   author:   unknown

Re: How to get Reply/Forwarded status and Date   
Do you want to know name of properties where Exchange stores this or format of date/time?

Michael
-------------------------------
If you need WebDAV API for Exchange server,
use our component WebDAV .NET for Exchange.
Check out http://www.independentsoft.com


 wrote in message news:1134639616.180182.139210@g14g2000cwa.googlegroups.com...
> Hello Everybody,
> 
> While developing small application in .NET using WebDav to access mails
> from Exchange server, i didn't find any information on how the server
> stores the Reply/Forwarded status and timestamp for the replied and
> forwarded mails.
> 
> While using "Outlook Web Access", Outlook etc we get a tag for
> forwarded/replied messages in the headers as:
> "You forwarded this message on 12/13/2005 6:01 PM."
> "You replied on 12/13/2005 5:38 PM."
> 
> Can anybody help about how the server stores these status flags and
> timestamps.
> 
> Regards
> Sarabjit Rupaal
>
date: Thu, 15 Dec 2005 12:30:30 +0100   author:   Michael

Re: How to get Reply/Forwarded status and Date   
This information is stored in three properties

PR_LAST_VERB_EXECUTED http://schemas.microsoft.com/mapi/proptag/x10810003 
stores an Integer representing the action taken eg 102 
=(EXCHIVERB_REPLYTOSENDER)

PR_LAST_VERB_EXECUTION_TIME 
http://schemas.microsoft.com/mapi/proptag/x10820040 Stores the Date/Time 
that action was taken

PR_ICON_INDEX http://schemas.microsoft.com/mapi/proptag/x10800003 controls 
the little icon in Outlook 261 (for a reply)

You might want to have a look at these properties youself using something 
like OutlookSpy or Mdbvu32

Cheers
Glen

 wrote in message 
news:1134639616.180182.139210@g14g2000cwa.googlegroups.com...
> Hello Everybody,
>
> While developing small application in .NET using WebDav to access mails
> from Exchange server, i didn't find any information on how the server
> stores the Reply/Forwarded status and timestamp for the replied and
> forwarded mails.
>
> While using "Outlook Web Access", Outlook etc we get a tag for
> forwarded/replied messages in the headers as:
> "You forwarded this message on 12/13/2005 6:01 PM."
> "You replied on 12/13/2005 5:38 PM."
>
> Can anybody help about how the server stores these status flags and
> timestamps.
>
> Regards
> Sarabjit Rupaal
>
date: Fri, 16 Dec 2005 12:01:05 +1100   author:   Glen Scales [MVP]

Re: How to get Reply/Forwarded status and Date   
How can i access these properties using WEBDAV. I tried comparing the
"changed properties" after replying/forwarding a mail, and to my
surprise, values of only two fields changed these are <DAV:getetag> and
<resourcetag>
these tags contain some binary values as
<j:resourcetag>
rt:6efe64bfd46028439bd1b6edb04e7eae0000000663266efe64bfd46028439bd1b6edb04e7eae00000006aa98
</j:resourcetag>

Does these binary values contain this information or How can we access
the properties mentioned by you using WebDav ?

Regards
Sarabjit Singh

Glen Scales [MVP] wrote:
> This information is stored in three properties
>
> PR_LAST_VERB_EXECUTED http://schemas.microsoft.com/mapi/proptag/x10810003
> stores an Integer representing the action taken eg 102
> =(EXCHIVERB_REPLYTOSENDER)
>
> PR_LAST_VERB_EXECUTION_TIME
> http://schemas.microsoft.com/mapi/proptag/x10820040 Stores the Date/Time
> that action was taken
>
> PR_ICON_INDEX http://schemas.microsoft.com/mapi/proptag/x10800003 controls
> the little icon in Outlook 261 (for a reply)
>
> You might want to have a look at these properties youself using something
> like OutlookSpy or Mdbvu32
>
> Cheers
> Glen
>
>  wrote in message
> news:1134639616.180182.139210@g14g2000cwa.googlegroups.com...
> > Hello Everybody,
> >
> > While developing small application in .NET using WebDav to access mails
> > from Exchange server, i didn't find any information on how the server
> > stores the Reply/Forwarded status and timestamp for the replied and
> > forwarded mails.
> >
> > While using "Outlook Web Access", Outlook etc we get a tag for
> > forwarded/replied messages in the headers as:
> > "You forwarded this message on 12/13/2005 6:01 PM."
> > "You replied on 12/13/2005 5:38 PM."
> >
> > Can anybody help about how the server stores these status flags and
> > timestamps.
> >
> > Regards
> > Sarabjit Rupaal
> >
date: 15 Dec 2005 21:02:29 -0800   author:   unknown

Re: How to get Reply/Forwarded status and Date   
Thanks Glen

The following Querry to fetch Schema told by you did the trick:
sQuery = "<?xml version='1.0'?>" +
	"<a:propfind xmlns:a='DAV:' xmlns:m='urn:schemas:mailheader:' " +
	" xmlns:n='http://schemas.microsoft.com/mapi/proptag/'>" +
	"<a:prop>" +
	"<m:subject/>" +
	"<n:x10810003/> <n:x10800003/> <n:x10820040/>" +
	"</a:prop>" +
	"</a:propfind>";

The returned ACTION_FLAG for x10810003 would be
102 = Replied to sender
103 = Replied to all
104 = Forwarded

whereas x10800003 gives the Icon status as
261 = Replied
262 = Forwarded
date: 15 Dec 2005 22:50:49 -0800   author:   unknown

Google
 
Web ureader.com


    COPYRIGHT 2007, YARDI TECHNOLOGY LIMITED, ALL RIGHT RESERVE  |   contact us