Add autoconfigure feature for Kolab users#232
Open
fjl5 wants to merge 14 commits intoaluxnimm:masterfrom
Open
Conversation
- Only active if the registry key "HKEY_CURRENT_USER\Software\CalDavSynchronizer\AutoconfigureKolab" is set to "1" - On every Outlook start, searches for new Kolab resources. Creates both folder and synchronization profile. - On every Outlook start, searches for obsolete Kolab resources. Removes the synchronization profile and renames the outlook folder to "... Deleted (date)".
…ew address books are visible as address list
Owner
|
Thank you very much, we will test this and integrate it but will take some time. |
added 7 commits
May 30, 2018 20:11
- Set the Outlook folder's description to explain Read-only / read-write resourcres - Use custom icons for synchronized folders
- Detect CalDAV default calendar according to RFC 6638 (Scheduling Extensions) - We can't rename the Outlook default folder, but at least set the folder description - When deleting a CalDAV default resource that is synced to the Outlook default folder, move alle entries to al "... Deleted" folder and move that folder to the trash folder.
- If there is a CalDAV default calender and the outlook default calendar is not synced, and the CaldDAV default folder used to be synced to an Outlook subfolder: change the sync setting to sync both default folders. - Let the initial sync process start after autoconfigure
- Only try autoconfigure if we have an IMAP account - In Autoconfigure mode, remove alls sync profiles without an outlook folder - Catch more errors and improve logging, use GenericComObjectWrapper - Don't sync reminders on shared and read-only resources. Q&D implementation: detect shared calendars by name (starts with "shared" or opening parentheses)
- Gracefully handle 'unable to create folder' situations - Add fallback for situations where outlook does not allow names with dots - Don't show dialog boxes on autoconfigure as this delays add-in initialization - Improve debug / info / error log - Remove dead code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When using Outlook as a Kolab client, the average user will expect new calendars and address books to show in Outlook without manual intervention. This pull request adds such a feature: It is only enabled if the registry key
HKEY_CURRENT_USER\Software\CalDavSynchronizer\AutoconfigureKolabis set to1, so CalDavSynchronizer will not change its default behaviour. Setting this key would typically be done by the Sysadmin when installing CalDavSynchronizer and/or setting up the Kolab IMAP account. A trivialkolab.regfile to add the key would be:Features added