b7a20fd384
ok ian@, Sergey Bronnikov (maintainer).
45 lines
1.8 KiB
Plaintext
45 lines
1.8 KiB
Plaintext
$OpenBSD: patch-radicale_config_py,v 1.4 2011/08/19 20:35:34 sthen Exp $
|
|
--- radicale/config.py.orig Wed Jun 15 20:03:33 2011
|
|
+++ radicale/config.py Mon Aug 1 23:44:48 2011
|
|
@@ -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"},
|
|
"encoding": {
|
|
"request": "utf-8",
|
|
"stock": "utf-8"},
|
|
@@ -52,7 +52,7 @@ INITIAL_CONFIG = {
|
|
"type": "None",
|
|
"public_users": "public",
|
|
"private_users": "private",
|
|
- "httpasswd_filename": "/etc/radicale/users",
|
|
+ "httpasswd_filename": "${SYSCONFDIR}/radicale/users",
|
|
"httpasswd_encryption": "crypt",
|
|
"ldap_url": "ldap://localhost:389/",
|
|
"ldap_base": "ou=users,dc=example,dc=com",
|
|
@@ -60,9 +60,9 @@ INITIAL_CONFIG = {
|
|
"ldap_binddn": "",
|
|
"ldap_password": ""},
|
|
"storage": {
|
|
- "folder": os.path.expanduser("~/.config/radicale/calendars")},
|
|
+ "folder": "/var/db/radicale/calendars"},
|
|
"logging": {
|
|
- "config": "/etc/radicale/logging",
|
|
+ "config": "${SYSCONFDIR}/radicale/logging",
|
|
"debug": "False",
|
|
"full_environment": "False"}}
|
|
|
|
@@ -74,7 +74,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'])
|