Fix OpenChange server code and access to Samba4 databases.
[OpenChange-git-clone.git] / libmapi++ / libmapi++-example.doxy
blobac9c59a993db158d0f9299f8ea7323c082138faf
1 /** \example test.cpp
3 An example that shows reading mail.
5 */
7 /** \example attach_test.cpp
9 An example that shows reading of attachments.
13 /** \example foldertree.cpp
15 This example lists the top level folders in the message store,
16 with output like:
17 \code
18 Message store display name: Mailbox - Test User1
19 |-----> Calendar (0 items, 0 unread)
20 |-----> Contacts (0 items, 0 unread)
21 |-----> Deleted Items (0 items, 0 unread)
22 |-----> Drafts (0 items, 0 unread)
23 |-----> Inbox (26 items, 24 unread)
24 |-----> Journal (0 items, 0 unread)
25 |-----> Notes (0 items, 0 unread)
26 |-----> Outbox (9 items, 0 unread)
27 |-----> Sent Items (0 items, 0 unread)
28 |-----> Tasks (0 items, 0 unread)
29 \endcode
31 The example shows how to create a session, get the message_store, get
32 properties of the message store, and then gets the list of child folders and
33 some associated folder properties.
37 /** \example messages.cpp
39 This example displays information about the messages in the inbox, with
40 output like:
41 \code
42 Inbox contains 2 messages
43 |-----> Test User1              | Working Remotely with Windows Small Business Server
44 |-----> Test User1              | Welcome to Windows Small Business Server 2003
45 \endcode
47 The example shows how to create a session, get the message_store, and open 
48 the inbox folder. It then determines how many messages are in the inbox folder,
49 and retrieves and prints the intended addressee and the message subject.