Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display MailBox content

Status
Not open for further replies.

rcloutie

Programmer
May 26, 2005
164
0
0
CA
Hi there,

Using GroupWise 7.02 with API SDK 2006-02-02...
Here's how (Delphi code) I retrieve mailbox's content:
---
s:='(MAIL) AND (BOX_TYPE=INCOMING) AND (CREATE_DATE >= TODAY - 7)';
vGWBox := vGWLog.AllMessages.Find(s);
---
All works fine except that it returns all messages, even those already classified (in personal cabinet folder).

Is there a parameter or filter to display only messages currently in the MailBox folder?

Thanks in advance,

Rej Cloutier
 
Again...

How to display the mailbox content as it is shown in GroupWise Mailbox UI (as the old MailBox object did)?

Filter:
s='(MAIL) AND (BOX_TYPE=INCOMING) AND (CREATE_DATE>=TODAY-7)'
Method:
vGWBox := vGWLog.AllMessages.Find(s);
(as formerly, but doesn't work anymore!%?&*)
vGWBox := vGWLog.MailBox.Find(s);

AllMessages return too many items and users only want to see what is displayed under GroupWise Inbox User Interface.

Thanks for help,

Rej Cloutier

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top