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