Handle --import for non-calendar items
[jelmer/calypso.git] / config
1 # Config file for Calypso - A simple calendar server
2 #
3 # Place it into /etc/calypso/config (global) 
4 # or ~/.config/calypso/config (user)
5 #
6 # The current values are the default ones
7
8 [server]
9 # CalDAV server hostname, empty for all hostnames
10 host =
11 # CalDAV server port
12 port = 5233
13 # Daemon flag
14 daemon = False
15 # SSL flag, enable HTTPS protocol
16 ssl = False
17 # SSL certificate path (if needed)
18 certificate = /etc/apache2/ssl/server.crt
19 # SSL private key (if needed)
20 key = /etc/apache2/ssl/server.key
21 # File to store the PID of the running calypso instance
22 # pidfile = /var/run/calypso.pid
23
24 [encoding]
25 # Encoding for responding requests
26 request = utf-8
27 # Encoding for storing local calendars
28 stock = utf-8
29
30 [acl]
31 # Access method
32 # Value: fake | htpasswd | pam
33 type = fake
34 # Personal calendars only available for logged in users (if needed)
35 personal = False
36 # Htpasswd filename (if needed)
37 filename = /etc/calypso/users
38 # Htpasswd encryption method (if needed)
39 # Value: plain | sha1 | crypt
40 encryption = crypt
41 # PAM service to use for authentication
42 # pam_service = passwd
43
44 [storage]
45 # Folder for storing local calendars,
46 # created if not present
47 folder = ~/.config/calypso/calendars
48
49 # vim:ft=cfg