in reply to Using perl to access exchange public folder (linux)

Have you looked into Email::Folder::Exchange? It doesn't use OLE, but it looks like it requires WebDAV.

clarification: it looks like WebDAV is required for 2000/2003 and EWS is required for 2007/2010

  • Comment on Re: Using perl to access exchange public folder (linux)

Replies are listed 'Best First'.
Re^2: Using perl to access exchange public folder (linux)
by bmenges (Initiate) on Apr 21, 2011 at 20:38 UTC
    Yeah that apparently doesn't work for HTTPS which is the only web-enabled access for our exchange server.
      clarification, it isn't working for our setup - getting error codes attempting to log in... won't access the data.
        Our Exchange server used a self-signed certificate so I needed this:
        $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;