config 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. # Root URL of Radicale (starting and ending with a slash)
  28. base_prefix = /
  29. # Message displayed in the client when a password is needed
  30. realm = Radicale - Password Required
  31. [encoding]
  32. # Encoding for responding requests
  33. request = utf-8
  34. # Encoding for storing local collections
  35. stock = utf-8
  36. [auth]
  37. # Authentication method
  38. # Value: None | htpasswd | IMAP | LDAP | PAM | courier | http
  39. type = None
  40. # Htpasswd filename
  41. htpasswd_filename = /etc/radicale/users
  42. # Htpasswd encryption method
  43. # Value: plain | sha1 | crypt
  44. htpasswd_encryption = crypt
  45. # LDAP server URL, with protocol and port
  46. ldap_url = ldap://localhost:389/
  47. # LDAP base path
  48. ldap_base = ou=users,dc=example,dc=com
  49. # LDAP login attribute
  50. ldap_attribute = uid
  51. # LDAP filter string
  52. # placed as X in a query of the form (&(...)X)
  53. # example: (objectCategory=Person)(objectClass=User)(memberOf=cn=calenderusers,ou=users,dc=example,dc=org)
  54. # leave empty if no additional filter is needed
  55. ldap_filter =
  56. # LDAP dn for initial login, used if LDAP server does not allow anonymous searches
  57. # Leave empty if searches are anonymous
  58. ldap_binddn =
  59. # LDAP password for initial login, used with ldap_binddn
  60. ldap_password =
  61. # LDAP scope of the search
  62. ldap_scope = OneLevel
  63. # IMAP Configuration
  64. imap_hostname = localhost
  65. imap_port = 143
  66. imap_ssl = False
  67. # PAM group user should be member of
  68. pam_group_membership =
  69. # Path to the Courier Authdaemon socket
  70. courier_socket =
  71. # HTTP authentication request URL endpoint
  72. http_url =
  73. # POST parameter to use for username
  74. http_user_parameter =
  75. # POST parameter to use for password
  76. http_password_parameter =
  77. [git]
  78. # Git default options
  79. committer = Firstname Lastname <Radicale@Radicale.org>
  80. [rights]
  81. # Rights management method
  82. # Value: None | owner_only | owner_write | from_file
  83. type = None
  84. # File for rights management from_file
  85. file = ~/.config/radicale/rights
  86. [storage]
  87. # Storage backend
  88. # Value: filesystem | multifilesystem | database
  89. type = filesystem
  90. # Folder for storing local collections, created if not present
  91. filesystem_folder = ~/.config/radicale/collections
  92. # Database URL for SQLAlchemy
  93. # dialect+driver://user:password@host/dbname[?key=value..]
  94. # For example: sqlite:///var/db/radicale.db, postgresql://user:password@localhost/radicale
  95. # See http://docs.sqlalchemy.org/en/rel_0_8/core/engines.html#sqlalchemy.create_engine
  96. database_url =
  97. [logging]
  98. # Logging configuration file
  99. # If no config is given, simple information is printed on the standard output
  100. # For more information about the syntax of the configuration file, see:
  101. # http://docs.python.org/library/logging.config.html
  102. config = /etc/radicale/logging
  103. # Set the default logging level to debug
  104. debug = False
  105. # Store all environment variables (including those set in the shell)
  106. full_environment = False
  107. # Additional HTTP headers
  108. #[headers]
  109. #Access-Control-Allow-Origin = *