-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for multiple CalDav servers (#3)
* Added support for multiple servers
- Loading branch information
Showing
4 changed files
with
85 additions
and
45 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
timezone: UTC | ||
server: | ||
url: "caldav url" | ||
user: "user name" | ||
password: "user password" | ||
timezone: UTC # see https://mljar.com/blog/list-pytz-timezones/ for all available timezones | ||
sources: | ||
Personal: # Name of server (can be anything, but have to be unique in this config) | ||
type: server # Just keep this, it's preparation for calendars specified by url | ||
user: "your user name" | ||
url: "your server url" | ||
password: "your password" | ||
#Work: # Another server or just different user | ||
# type: server | ||
# user: "your user name" | ||
# url: "your server url" | ||
# password: "your password" |
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