change default rights/permit_delete_collection from True to False (failsafe)
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
* Adjustment: option [auth] htpasswd_encryption change default from "md5" to "autodetect"
|
* Adjustment: option [auth] htpasswd_encryption change default from "md5" to "autodetect"
|
||||||
* Add: option [auth] type=ldap with (group) rights management via LDAP/LDAPS
|
* Add: option [auth] type=ldap with (group) rights management via LDAP/LDAPS
|
||||||
|
* Adjustment: option [rights] 'permit_delete_collection' change default from "True" to "False" (failsafe)
|
||||||
|
|
||||||
## 3.2.3
|
## 3.2.3
|
||||||
* Add: support for Python 3.13
|
* Add: support for Python 3.13
|
||||||
|
|||||||
2
config
2
config
@@ -113,7 +113,7 @@
|
|||||||
#file = /etc/radicale/rights
|
#file = /etc/radicale/rights
|
||||||
|
|
||||||
# Permit delete of a collection (global)
|
# Permit delete of a collection (global)
|
||||||
#permit_delete_collection = True
|
#permit_delete_collection = False
|
||||||
|
|
||||||
|
|
||||||
[storage]
|
[storage]
|
||||||
|
|||||||
@@ -242,7 +242,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
|
|||||||
"type": str_or_callable,
|
"type": str_or_callable,
|
||||||
"internal": rights.INTERNAL_TYPES}),
|
"internal": rights.INTERNAL_TYPES}),
|
||||||
("permit_delete_collection", {
|
("permit_delete_collection", {
|
||||||
"value": "True",
|
"value": "False",
|
||||||
"help": "permit delete of a collection",
|
"help": "permit delete of a collection",
|
||||||
"type": bool}),
|
"type": bool}),
|
||||||
("file", {
|
("file", {
|
||||||
|
|||||||
Reference in New Issue
Block a user