On NT4 my Access application sent and received messages transparently through Outlook just fine. When time came to upgrade hardware, I received it with Win2K pre-installed. When I moved my application to that shining new workstation, I realized that Outlook has a new security patch with prevents messages from being sent directly through Outlook API. What happens, is that each time a message is sent you see a dialog with 5 second delay. After 5 seconds are over you see an enabled "Yes" button on that dialog. Then your Outlook is activated, so you have to switch back after message has been sent. When you receive new messages you have to tell outlook to allow access for certian number of minutes. Same when trying to resolve a name in Global Address Book.
Forget it, I thought, I'll do something with Perl. And I did. And it works. Everything except listing folders on Exchange server. That part I still need to figure out. Thank you, authors of such useful modules as Net::POP3, Net::SMTP, Net::LDAP, SOAP::Lite. Thanks for pocketSOAP developers also (that's how I connect between Access and other functions).
Outlook is bad. And it is getting worse and worse. So annoying.
I'm guessing you can obtain a list of Exchange folders through the IMAP protocol; not sure what Perl modules might be available to handle that.
Re:IMAP
Mr. Muskrat on 2004-05-07T21:14:52
Net::IMAP perhaps?Re:IMAP
avik on 2004-05-07T21:34:37
Gotta take a look at that one. Thanks!