config.toml.example (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # MyCalendar Configuration Example # User information name = "John Doe" email = "john.doe@example.com" timezone = "Europe/London" # Legacy calendar configuration (for backward compatibility) # Only one of url or file should be specified [calendar] url = "https://example.com/calendar.ics" # file = "/path/to/calendar.ics" # Multiple calendars configuration # You can specify as many calendars as needed [[calendars]] url = "https://work.example.com/calendar.ics" # file = "" all_tentative = false # Default - events will be marked tentative based on their properties [[calendars]] url = "https://personal.example.com/calendar.ics" # file = "" all_tentative = true # All events from this calendar will be marked as tentative [[calendars]] # url = "" file = "/path/to/local/calendar.ics" all_tentative = false # Default - normal tentative event detection |