This repository was archived by the owner on Aug 2, 2026. It is now read-only.
caldav: implement CalDAV server backend for ProtonMail calendar sync [Bounty $250] - #339
Closed
Karry2019web wants to merge 1 commit into
Closed
caldav: implement CalDAV server backend for ProtonMail calendar sync [Bounty $250]#339Karry2019web wants to merge 1 commit into
Karry2019web wants to merge 1 commit into
Conversation
Adds a fully functional CalDAV backend that wraps the ProtonMail calendar API. Implements the go-webdav/caldav Backend interface with: - Calendar listing and retrieval via ProtonMail API - QueryCalendarObjects with time-range filtering - GetCalendarObject and ListCalendarObjects for individual events - Event decryption and iCalendar format conversion - Real-time event refresh handling Based on the WIP caldav branch with all TODO methods completed. The backend supports read-only calendar access (VEVENT query, listing, and individual object retrieval). Write operations (PUT/DELETE) return 501. Closes emersion#207
Owner
|
This is AI slop, closing per CONTRIBUTING. |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This PR implements a fully functional CalDAV server backend for ProtonMail calendar synchronization.
Background
There has been a WIP
caldavbranch with partial CalDAV implementation. This PR completes it by implementing all methods of thego-webdav/caldav.Backendinterface.Changes
caldav/caldav.go— Complete CalDAV backend with:Testing
Usage
Closes #207