Hi Monks,

I'm banging my head against the wall here, and the docs aren't helping. I'm trying to automate parsing of a mailbox using webdav running on exchange. I've successfully been able to get to my inbox, and enumerate though all my inbox's emails (yay!). This gives me a url for each individual email. My problem is I can't seem to use this url to get the email message as a string.

Just doing a GET returns some html obviously intended for a browser. So I’m doing a PROPFIND. This looked hopeful, but I can't see anywhere in the response where the headers and the body are intact.

My best result comes from running...

my $d = HTTP::DAV->new(); $d->credentials( -url=>"http://host", -user=> 'user', -pass=> $password) or die $d->message; $d->open("http://host/exchange/user/Inbox/") or die $d->message; my $r = $d->propfind('http://host/exchange/user/blah.EML', 0); my $long_ls = $r->get_property('long_ls');
This does have some headers, but I can't just save $long_ls to disk as an .eml without it being garbled and missing the from address subject etc (although the bulk of the content does seem to be there).

I don't really know where to go from here.

Any help much appreciated.

TIA, Rob

---
my name's not Keith, and I'm not reasonable.

In reply to HTTP::Dav and Exchange by reasonablekeith

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.