Jules_Verne has asked for the wisdom of the Perl Monks concerning the following question:
My first idea was to change GetDefaultFolder to GetPublicFolder. Then I provided the address of the public folder as a string (I was guessing here), so we end up with:#open the default Calendar and grab the items in the calendar (twice.. +.) my $namespace = $outlook->GetNameSpace("MAPI") or die "can't open MAPI + namespace\n"; my $recurringitems = $namespace->GetDefaultFolder(olFolderCalendar)->{ +Items}; my $calitems = $namespace->GetDefaultFolder(olFolderCalendar)->{Items} +;
But this didn't work at all. I have full permissions for these public folders. I looked at Microsoft's documentation and came away with the feeling that I am going in the wrong direction. Any ideas would be appreciated.my $recurringitems = $namespace->GetPublicFolder("\\Path\to folder")->{Items}; my $calitems = $namespace->GetPublicFolder("\\Path\to\folder")->{Items +};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Outlook public folders
by Anonymous Monk on Mar 14, 2002 at 08:28 UTC | |
|
Re: Outlook public folders
by Jules_Verne (Novice) on Mar 14, 2002 at 15:31 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |