├── README.md └── activesync ├── as_wbxml_test.go ├── base ├── base.go ├── base_test.go └── lcid.go ├── codebook.go ├── codebook_test.go ├── codepages ├── airsync.go ├── airsync_test.go ├── airsyncbase.go ├── airsyncbase_test.go ├── calendar.go ├── calendar_test.go ├── composemail.go ├── composemail_test.go ├── contacts.go ├── contacts2.go ├── contacts2_test.go ├── contacts_test.go ├── documentlibrary.go ├── documentlibrary_test.go ├── email.go ├── email2.go ├── email2_test.go ├── email_test.go ├── folderhierarchy.go ├── folderhierarchy_test.go ├── gal.go ├── gal_test.go ├── itemestimate.go ├── itemestimate_test.go ├── itemoperations.go ├── itemoperations_test.go ├── meetingresponse.go ├── meetingresponse_test.go ├── move.go ├── move_test.go ├── notes.go ├── notes_test.go ├── ping.go ├── ping_test.go ├── provision.go ├── provision_test.go ├── resolverecipients.go ├── resolverecipients_test.go ├── rightsmanagement.go ├── rightsmanagement_test.go ├── search.go ├── search_test.go ├── settings.go ├── settings_test.go ├── tasks.go ├── tasks_test.go ├── test_utils.go ├── validatecert.go └── validatecert_test.go ├── helpers.go ├── helpers_test.go └── http.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/README.md -------------------------------------------------------------------------------- /activesync/as_wbxml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/as_wbxml_test.go -------------------------------------------------------------------------------- /activesync/base/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/base/base.go -------------------------------------------------------------------------------- /activesync/base/base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/base/base_test.go -------------------------------------------------------------------------------- /activesync/base/lcid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/base/lcid.go -------------------------------------------------------------------------------- /activesync/codebook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codebook.go -------------------------------------------------------------------------------- /activesync/codebook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codebook_test.go -------------------------------------------------------------------------------- /activesync/codepages/airsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/airsync.go -------------------------------------------------------------------------------- /activesync/codepages/airsync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/airsync_test.go -------------------------------------------------------------------------------- /activesync/codepages/airsyncbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/airsyncbase.go -------------------------------------------------------------------------------- /activesync/codepages/airsyncbase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/airsyncbase_test.go -------------------------------------------------------------------------------- /activesync/codepages/calendar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/calendar.go -------------------------------------------------------------------------------- /activesync/codepages/calendar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/calendar_test.go -------------------------------------------------------------------------------- /activesync/codepages/composemail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/composemail.go -------------------------------------------------------------------------------- /activesync/codepages/composemail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/composemail_test.go -------------------------------------------------------------------------------- /activesync/codepages/contacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/contacts.go -------------------------------------------------------------------------------- /activesync/codepages/contacts2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/contacts2.go -------------------------------------------------------------------------------- /activesync/codepages/contacts2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/contacts2_test.go -------------------------------------------------------------------------------- /activesync/codepages/contacts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/contacts_test.go -------------------------------------------------------------------------------- /activesync/codepages/documentlibrary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/documentlibrary.go -------------------------------------------------------------------------------- /activesync/codepages/documentlibrary_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/documentlibrary_test.go -------------------------------------------------------------------------------- /activesync/codepages/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/email.go -------------------------------------------------------------------------------- /activesync/codepages/email2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/email2.go -------------------------------------------------------------------------------- /activesync/codepages/email2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/email2_test.go -------------------------------------------------------------------------------- /activesync/codepages/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/email_test.go -------------------------------------------------------------------------------- /activesync/codepages/folderhierarchy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/folderhierarchy.go -------------------------------------------------------------------------------- /activesync/codepages/folderhierarchy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/folderhierarchy_test.go -------------------------------------------------------------------------------- /activesync/codepages/gal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/gal.go -------------------------------------------------------------------------------- /activesync/codepages/gal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/gal_test.go -------------------------------------------------------------------------------- /activesync/codepages/itemestimate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/itemestimate.go -------------------------------------------------------------------------------- /activesync/codepages/itemestimate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/itemestimate_test.go -------------------------------------------------------------------------------- /activesync/codepages/itemoperations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/itemoperations.go -------------------------------------------------------------------------------- /activesync/codepages/itemoperations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/itemoperations_test.go -------------------------------------------------------------------------------- /activesync/codepages/meetingresponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/meetingresponse.go -------------------------------------------------------------------------------- /activesync/codepages/meetingresponse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/meetingresponse_test.go -------------------------------------------------------------------------------- /activesync/codepages/move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/move.go -------------------------------------------------------------------------------- /activesync/codepages/move_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/move_test.go -------------------------------------------------------------------------------- /activesync/codepages/notes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/notes.go -------------------------------------------------------------------------------- /activesync/codepages/notes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/notes_test.go -------------------------------------------------------------------------------- /activesync/codepages/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/ping.go -------------------------------------------------------------------------------- /activesync/codepages/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/ping_test.go -------------------------------------------------------------------------------- /activesync/codepages/provision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/provision.go -------------------------------------------------------------------------------- /activesync/codepages/provision_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/provision_test.go -------------------------------------------------------------------------------- /activesync/codepages/resolverecipients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/resolverecipients.go -------------------------------------------------------------------------------- /activesync/codepages/resolverecipients_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/resolverecipients_test.go -------------------------------------------------------------------------------- /activesync/codepages/rightsmanagement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/rightsmanagement.go -------------------------------------------------------------------------------- /activesync/codepages/rightsmanagement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/rightsmanagement_test.go -------------------------------------------------------------------------------- /activesync/codepages/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/search.go -------------------------------------------------------------------------------- /activesync/codepages/search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/search_test.go -------------------------------------------------------------------------------- /activesync/codepages/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/settings.go -------------------------------------------------------------------------------- /activesync/codepages/settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/settings_test.go -------------------------------------------------------------------------------- /activesync/codepages/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/tasks.go -------------------------------------------------------------------------------- /activesync/codepages/tasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/tasks_test.go -------------------------------------------------------------------------------- /activesync/codepages/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/test_utils.go -------------------------------------------------------------------------------- /activesync/codepages/validatecert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/validatecert.go -------------------------------------------------------------------------------- /activesync/codepages/validatecert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/codepages/validatecert_test.go -------------------------------------------------------------------------------- /activesync/helpers.go: -------------------------------------------------------------------------------- 1 | package activesync 2 | -------------------------------------------------------------------------------- /activesync/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/helpers_test.go -------------------------------------------------------------------------------- /activesync/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmonty/activesync-go/HEAD/activesync/http.go --------------------------------------------------------------------------------