From ff535b62b07413818fdda52d94f5c5a61d663b7c Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Fri, 6 Sep 2013 16:00:12 +0200 Subject: [PATCH] Remove useless config keys --- config | 7 +------ radicale/config.py | 2 -- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/config b/config index 75b12bd..5746523 100644 --- a/config +++ b/config @@ -30,7 +30,7 @@ dns_lookup = True # Root URL of Radicale (starting and ending with a slash) base_prefix = / # Message displayed in the client when a password is needed -realm = Radicale - Password Required lol +realm = Radicale - Password Required [encoding] @@ -45,11 +45,6 @@ stock = utf-8 # Value: None | htpasswd | IMAP | LDAP | PAM | courier | http type = None -# Usernames used for public collections, separated by a comma -public_users = public -# Usernames used for private collections, separated by a comma -private_users = private - # Htpasswd filename htpasswd_filename = /etc/radicale/users # Htpasswd encryption method diff --git a/radicale/config.py b/radicale/config.py index 44d057e..12c8408 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -53,8 +53,6 @@ INITIAL_CONFIG = { "stock": "utf-8"}, "auth": { "type": "None", - "public_users": "public", - "private_users": "private", "htpasswd_filename": "/etc/radicale/users", "htpasswd_encryption": "crypt", "imap_hostname": "localhost",