-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add autoconfigure feature for Kolab users #232
Open
fjl5
wants to merge
14
commits into
aluxnimm:master
Choose a base branch
from
fjl5:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
- 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
Thank you very much, we will test this and integrate it but will take some time. |
- 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
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\AutoconfigureKolab
is 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.reg
file to add the key would be:Features added