--- radicale/config.py.orig	Wed Aug 19 15:06:33 2015
+++ radicale/config.py	Fri Nov 27 22:06:38 2015
@@ -43,8 +43,8 @@ INITIAL_CONFIG = {
         "daemon": "False",
         "pid": "",
         "ssl": "False",
-        "certificate": "/etc/apache2/ssl/server.crt",
-        "key": "/etc/apache2/ssl/server.key",
+        "certificate": "${SYSCONFDIR}/radicale/server.crt",
+        "key": "${SYSCONFDIR}/radicale/private/server.key",
         "protocol": "PROTOCOL_SSLv23",
         "ciphers": "",
         "dns_lookup": "True",
@@ -60,7 +60,7 @@ INITIAL_CONFIG = {
     "auth": {
         "type": "None",
         "custom_handler": "",
-        "htpasswd_filename": "/etc/radicale/users",
+        "htpasswd_filename": "${SYSCONFDIR}/radicale/users",
         "htpasswd_encryption": "crypt",
         "imap_hostname": "localhost",
         "imap_port": "143",
@@ -86,11 +86,10 @@ INITIAL_CONFIG = {
     "storage": {
         "type": "filesystem",
         "custom_handler": "",
-        "filesystem_folder": os.path.expanduser(
-            "~/.config/radicale/collections"),
+        "filesystem_folder": "/var/db/radicale/calendars",
         "database_url": ""},
     "logging": {
-        "config": "/etc/radicale/logging",
+        "config": "${SYSCONFDIR}/radicale/logging",
         "debug": "False",
         "full_environment": "False"}}
 
@@ -102,7 +101,7 @@ for section, values in INITIAL_CONFIG.items():
     for key, value in values.items():
         _CONFIG_PARSER.set(section, key, value)
 
-_CONFIG_PARSER.read("/etc/radicale/config")
+_CONFIG_PARSER.read("${SYSCONFDIR}/radicale/config")
 _CONFIG_PARSER.read(os.path.expanduser("~/.config/radicale/config"))
 if "RADICALE_CONFIG" in os.environ:
     _CONFIG_PARSER.read(os.environ["RADICALE_CONFIG"])
