ical.cfg 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. ##############################################################
  2. # ICAL SETTINGS
  3. # drop privileges and run the process as this user
  4. #run_as_user = kopano
  5. # drop privileges and run the process as this group
  6. #run_as_group = kopano
  7. # create a pid file for stopping the service via the init.d scripts
  8. #pid_file = /var/run/kopano/ical.pid
  9. # run server in this path (when not using the -F switch)
  10. #running_path = /var/lib/kopano
  11. # IP Address to bind to (empty for ANY)
  12. #server_bind =
  13. # wether normal connections can be made to the ical server
  14. ical_enable = yes
  15. # port which the ical server listens on for normal connections
  16. ical_port = 8080
  17. # wether ssl connections can be made to the ical server
  18. icals_enable = no
  19. # port which the ical server listens on for ssl connections
  20. icals_port = 8443
  21. # default connection to the storage server
  22. # Please refer to the administrator manual or manpage why HTTP is used rather than the UNIX socket.
  23. server_socket = http://localhost:236/
  24. # Process model, using pthreads (thread) or processes (fork)
  25. process_model = fork
  26. ##############################################################
  27. # ICAL LOG SETTINGS
  28. # Logging method (syslog, file)
  29. log_method = file
  30. # Loglevel (0(none), 1(crit), 2(err), 3(warn), 4(notice), 5(info), 6(debug))
  31. #log_level = 3
  32. # Logfile for log_method = file, use '-' for stderr
  33. log_file = /var/log/kopano/ical.log
  34. # Log timestamp - prefix each log line with timestamp in 'file' logging mode
  35. log_timestamp = 1
  36. # Buffer logging in what sized blocks. 0 for line-buffered (syslog-style).
  37. #log_buffer_size = 0
  38. ##############################################################
  39. # ICAL SSL SETTINGS FOR INCOMING CONNECTIONS
  40. # File with RSA key for SSL
  41. ssl_private_key_file = /etc/kopano/ical/privkey.pem
  42. # File with certificate for SSL
  43. ssl_certificate_file = /etc/kopano/ical/cert.pem
  44. # Verify client certificate
  45. ssl_verify_client = no
  46. # Client verify file and/or path
  47. ssl_verify_file =
  48. ssl_verify_path =
  49. # SSL protocols to use, space-separated list of protocols
  50. # (SSLv3 TLSv1 TLSv1.1 TLSv1.2); prefix with ! to lock out a protocol.
  51. #ssl_protocols =
  52. # SSL ciphers to use, set to 'ALL' for backward compatibility
  53. ssl_ciphers = ALL:!LOW:!SSLv2:!EXP:!aNULL
  54. # Prefer the server's order of SSL ciphers over client's
  55. ssl_prefer_server_ciphers = no
  56. ##############################################################
  57. # OTHER ICAL SETTINGS
  58. # The timezone of the system clock
  59. server_timezone = Europe/Amsterdam
  60. # The charset of data to expect when the client doesn't specify any
  61. default_charset = utf-8
  62. # Enable the iCalendar GET method for downloading calendars
  63. enable_ical_get = yes