config 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # -*- mode: conf -*-
  2. # vim:ft=cfg
  3. # Config file for Radicale - A simple calendar server
  4. #
  5. # Place it into /etc/radicale/config (global)
  6. # or ~/.config/radicale/config (user)
  7. #
  8. # The current values are the default ones
  9. [server]
  10. # CalDAV server hostnames separated by a comma
  11. # IPv4 syntax: address:port
  12. # IPv6 syntax: [address]:port
  13. # IPv6 adresses are configured to only allow IPv6 connections
  14. hosts = 0.0.0.0:5232
  15. # Daemon flag
  16. daemon = False
  17. # File storing the PID in daemon mode
  18. pid =
  19. # SSL flag, enable HTTPS protocol
  20. ssl = False
  21. # SSL certificate path
  22. certificate = /etc/apache2/ssl/server.crt
  23. # SSL private key
  24. key = /etc/apache2/ssl/server.key
  25. # Reverse DNS to resolve client address in logs
  26. dns_lookup = True
  27. # base URL if / is not the CalDAV root
  28. base_prefix =
  29. [encoding]
  30. # Encoding for responding requests
  31. request = utf-8
  32. # Encoding for storing local collections
  33. stock = utf-8
  34. [auth]
  35. # Authentication method
  36. # Value: None | htpasswd | LDAP | PAM | courier
  37. type = None
  38. # Usernames used for public collections, separated by a comma
  39. public_users = public
  40. # Usernames used for private collections, separated by a comma
  41. private_users = private
  42. # Htpasswd filename
  43. htpasswd_filename = /etc/radicale/users
  44. # Htpasswd encryption method
  45. # Value: plain | sha1 | crypt
  46. htpasswd_encryption = crypt
  47. # LDAP server URL, with protocol and port
  48. ldap_url = ldap://localhost:389/
  49. # LDAP base path
  50. ldap_base = ou=users,dc=example,dc=com
  51. # LDAP login attribute
  52. ldap_attribute = uid
  53. # LDAP filter string
  54. # placed as X in a query of the form (&(...)X)
  55. # example: (objectCategory=Person)(objectClass=User)(memberOf=cn=calenderusers,ou=users,dc=example,dc=org)
  56. # leave empty if no additional filter is needed
  57. ldap_filter =
  58. # LDAP dn for initial login, used if LDAP server does not allow anonymous searches
  59. # Leave empty if searches are anonymous
  60. ldap_binddn =
  61. # LDAP password for initial login, used with ldap_binddn
  62. ldap_password =
  63. # LDAP scope of the search
  64. ldap_scope = OneLevel
  65. # PAM group user should be member of
  66. pam_group_membership =
  67. # Path to the Courier Authdaemon socket
  68. courier_socket =
  69. [rights]
  70. # Rights management method
  71. # Value: None | owner_only | owner_write | from_file
  72. type = None
  73. # File for rights management from_file
  74. file = ~/.config/radicale/rights
  75. [storage]
  76. # Storage backend
  77. type = filesystem
  78. # Folder for storing local collections, created if not present
  79. filesystem_folder = ~/.config/radicale/collections
  80. [logging]
  81. # Logging configuration file
  82. # If no config is given, simple information is printed on the standard output
  83. # For more information about the syntax of the configuration file, see:
  84. # http://docs.python.org/library/logging.config.html
  85. config = /etc/radicale/logging
  86. # Set the default logging level to debug
  87. debug = False
  88. # Store all environment variables (including those set in the shell)
  89. full_environment = False