Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.4 KiB

4 years ago
  1. # If you want to synchronize calcurse with a CalDAV server using
  2. # calcurse-caldav, create a new directory ~/.calcurse/caldav/, copy this file
  3. # to ~/.calcurse/caldav/config and adjust the configuration below.
  4. [General]
  5. # Path to the calcurse binary that is used for importing/exporting items.
  6. Binary = calcurse
  7. # Host name of the server that hosts CalDAV.
  8. Hostname = drive.yigitcolakoglu.com
  9. # Path to the CalDAV calendar on the host specified above.
  10. Path = remote.php/dav/calendars/yigitcolakoglu/pcalendar
  11. # Type of authentication to use. Must be "basic" or "oauth2"
  12. AuthMethod = basic
  13. # Enable this if you want to skip SSL certificate checks.
  14. InsecureSSL = No
  15. # Disable this if you want to use HTTP instead of HTTPS.
  16. # Using plain HTTP is highly discouraged.
  17. HTTPS = Yes
  18. # This option allows you to filter the types of tasks synced. To this end, the
  19. # value of this option should be a comma-separated list of item types, where
  20. # each item type is either "event", "apt", "recur-event", "recur-apt", "todo",
  21. # "recur" or "cal". Note that the comma-separated list must not contain any
  22. # spaces. Refer to the documentation of the --filter-type command line argument
  23. # of calcurse for more details. Set this option to "cal" if the configured
  24. # CalDAV server doesn't support tasks, such as is the case with Google
  25. # Calendar.
  26. SyncFilter = cal,todo,recur,recur-event,event
  27. # Disable this option to actually enable synchronization. If it is enabled,
  28. # nothing is actually written to the server or to the local data files. If you
  29. # combine DryRun = Yes with Verbose = Yes, you get a log of what would have
  30. # happened with this option disabled.
  31. DryRun = No
  32. # Enable this if you want detailed logs written to stdout.
  33. Verbose = Yes
  34. # Credentials for HTTP Basic Authentication. Leave this commented out if you do
  35. # not want to use authentication.
  36. [Auth]
  37. Username = yigitcolakoglu
  38. # Optionally specify additional HTTP headers here.
  39. #[CustomHeaders]
  40. #User-Agent = Mac_OS_X/10.9.2 (13C64) CalendarAgent/176
  41. # Use the following to synchronize with an OAuth2-based service
  42. # such as Google Calendar.
  43. #[OAuth2]
  44. #ClientID =
  45. #ClientSecret =
  46. # Scope of access for API calls. Synchronization requires read/write.
  47. #Scope = https://www.googleapis.com/auth/calendar
  48. # Change the redirect URI if you receive errors, but ensure that it is identical
  49. # to the redirect URI you specified in the API settings.
  50. #RedirectURI = http://127.0.0.1