source: npl/mailserver/kopano_conf/root/etc/kopano/ical.cfg @ 2c1b61a

gcc484perl-5.22
Last change on this file since 2c1b61a was 2c1b61a, checked in by Edwin Eefting <edwin@datux.nl>, 7 years ago

migrated settings to new default configs

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