mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Fix wrong syntax in config file and fix #58
This commit is contained in:
parent
56581a998a
commit
7ac971e022
2 changed files with 5 additions and 4 deletions
|
@ -283,7 +283,7 @@ class Application(object):
|
|||
self.collect_allowed_items(items, user)
|
||||
|
||||
if ((read_allowed_items or write_allowed_items)
|
||||
and auth.is_authenticated(user, password)) or \
|
||||
and (not user or auth.is_authenticated(user, password))) or \
|
||||
function == self.options or not items:
|
||||
# Collections found, or OPTIONS request, or no items at all
|
||||
status, headers, answer = function(
|
||||
|
@ -292,8 +292,9 @@ class Application(object):
|
|||
else:
|
||||
status, headers, answer = NOT_ALLOWED
|
||||
|
||||
if (status, headers, answer) == NOT_ALLOWED and \
|
||||
not auth.is_authenticated(user, password):
|
||||
if ((status, headers, answer) == NOT_ALLOWED and
|
||||
not auth.is_authenticated(user, password) and
|
||||
config.get("auth", "type") != "None"):
|
||||
# Unknown or unauthorized user
|
||||
log.LOGGER.info("%s refused" % (user or "Anonymous user"))
|
||||
status = client.UNAUTHORIZED
|
||||
|
|
2
rights
2
rights
|
@ -7,7 +7,7 @@
|
|||
|
||||
# This means all users starting with "admin" may read any collection
|
||||
[admin]
|
||||
user: ^admin.*\|.+?$
|
||||
user: ^admin.*$
|
||||
collection: .*
|
||||
permission: r
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue