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