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
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 >
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 >
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 > >
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