Configure Exchange Config File
The Exchange Calendar Data Provider for Data Synchronisation Studio allows you to return data from multiple Exchange Calendars. This allows you to aggregate the calendar data into a single view and publish this data to another source such as SharePoint.
The provider requires an Xml document that contains all the settings. The format of the Exchange Calendar Config Xml file should be like this below.
<Exchange> <Server>https://owaserveraddress/exchange</Server> <Username>username</Username> <Password>pass</Password> <Domain></Domain> <FormsAuthentication>True</FormsAuthentication> <Calendar>#SERVER#/#MAILBOX#/Calendar</Calendar> <DaysBackToReturn>90</DaysBackToReturn> <DaysForwardToReturn>30</DaysForwardToReturn> <AdjustToUniversal>False</AdjustToUniversal> <AdjustAllDayEventForSharePoint>True</AdjustAllDayEventForSharePoint> <Category>Work Hours</Category> <MailBoxes> <MailBox>Mailbox1</MailBox> <MailBox>Mailbox2</MailBox> <MailBox>Mailbox3</MailBox> <MailBox>Mailbox4</MailBox> </MailBoxes> </Exchange>
To receive data for recurring future events you need to ensure that the Days Forward is larger than 0.
To filter the results so only events of a particular Category are returned you should provide the Category name in the Category field.

