all repos — mycal @ f44aed1f50ff642c18b8737c1b0617ba2be0a255

private calendar anonymiser

add config example

Alan Pearce
commit

f44aed1f50ff642c18b8737c1b0617ba2be0a255

parent

2d391590d85498f2703f295dc7c64c31b4ff6697

1 file changed, 30 insertions(+), 0 deletions(-)

changed files
A config.toml.example
@@ -0,0 +1,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