1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00
Commit graph

186 commits

Author SHA1 Message Date
Peter Bieringer
e852c887d7 Enhancement: add option to toggle debug log of right with doesn't match 2024-08-28 08:03:16 +02:00
ray-react0r
3cba4b32a3
Merge branch 'master' into react0r 2024-08-15 15:07:49 -06:00
Ray
d6c0a05771 Style fixes for tox linting 2024-08-14 11:15:30 -06:00
Ray
b0f131cac2 Improve free-busy report 2024-08-14 05:43:53 -06:00
Peter Bieringer
13b1aaed39 add auth/strip_domain option 2024-07-18 06:50:29 +02:00
Peter Bieringer
51a7136b93 disable extra content by default on debug log level 2024-06-18 17:43:35 +02:00
Peter Bieringer
bbe7088561 change default of "skip_broken_item" to more user-friendly experience 2024-06-18 17:42:49 +02:00
Peter Bieringer
e9c7d4a671
Merge pull request #1473 from itglob/master
Ability to create predefined calendar or(and) addressbook for new user
2024-06-11 22:18:25 +02:00
Peter Bieringer
1acfa480fa add options for conditional debug log of request header+content / response content 2024-06-11 13:23:03 +02:00
Peter Bieringer
0cf8ede6c7 bugfix 2024-06-09 15:20:28 +02:00
Peter Bieringer
fc7b50d69f add option to skip broken item instead of triggering exception 2024-06-09 13:57:32 +02:00
Peter Bieringer
ad596002f3 add support for conditional logging of backtrace_on_debug 2024-06-09 13:42:08 +02:00
Peter Bieringer
ad3a8d9370 update copyright 2024-06-07 08:36:05 +02:00
Peter Bieringer
2c0da6f37c extend copyright 2024-05-29 06:08:04 +02:00
Peter Bieringer
4678612194 add option to log bad PUT request content 2024-05-29 06:07:36 +02:00
IM
515afb52ed move check predefined_collections props to config.py 2024-05-03 23:07:04 +03:00
IM
f7e01d55ed Ability to create predefined calendar or(and) addressbook for new user 2024-04-22 12:23:24 +03:00
IM
239e17d735 added compatibility with a case-insensitive authentication provider 2024-04-17 18:31:51 +03:00
Peter Bieringer
9d91564d10 adjust default loglevel to "info 2024-03-22 07:21:15 +01:00
Peter Bieringer
08a4c792b1 add option for global permit of delete of collection (default: True to avoid breaking change) 2024-03-09 07:46:35 +01:00
Tuna Celik
22c843c49c Added queue type config for topic, values are classic and quorum 2024-03-02 13:38:42 +01:00
Tuna Celik
3e6d8db98d Synced config.py with origin 2023-02-10 23:32:46 +01:00
Tuna Celik
22731f3d26 Fixed couple of points after origin sync 2023-02-10 22:52:49 +01:00
Tuna Celik
bfe4332ac5 Refactoring 2020-08-17 02:23:49 +02:00
Tuna Celik
5253a464ab Addd hook capability 2020-08-17 02:05:02 +02:00
Unrud
150dd0c4cd Trim all (ASCII) whitespace characters 2020-05-19 07:06:44 +02:00
Unrud
593f9b688c Remove unnecessary string trimming 2020-05-19 06:48:12 +02:00
Unrud
9c622b57d5 Allow callable in configuration for plugin.type
Example:

```python3
\# Load default configuration
my_config = config.load()

\# Pass a class directly
my_config.update({"auth": {"type": MyAuth}})

\# Pass an object directly
my_rights = MyRights()
my_config.update({"rights": {"type": lambda config: my_rights}})

app = Application(my_config)
````
2020-04-09 22:01:35 +02:00
Unrud
180e96b332 Move internal options to other sections 2020-02-19 09:50:36 +01:00
Unrud
8e3465b5d4 Specify option type in _allow_extra 2020-02-19 09:50:30 +01:00
Unrud
5371be2b39 Mark internal configuration options and sections with underscore 2020-02-19 09:50:27 +01:00
Unrud
0bda1f4c16 Improve error messages 2020-02-19 09:50:25 +01:00
Unrud
66fabbead9 Use socket pairs to communicate with client threads 2020-02-19 09:50:19 +01:00
Unrud
cc22927353 Bind sockets for IPv4 and IPv6 2020-02-19 09:49:56 +01:00
Unrud
a872b633fb Refactor: Remove method Configuration.log_config_sources 2020-02-19 09:48:42 +01:00
Unrud
11ea3cc7a4 Remove settings for TLS protocol and ciphers
Use the recommended default settings instead.
2020-02-19 09:48:38 +01:00
Unrud
4a43b17840 Remove reverse DNS lookup
It wasn't working for years because the functionality was removed from http.server.
Nobody complained.
2020-02-19 09:48:34 +01:00
Unrud
6108d8d759 Remove unsecure methods from htpasswd and make md5 default 2020-01-19 21:07:54 +01:00
Unrud
0fb02cd026 Cosmetic changes (pylint) 2020-01-17 12:59:14 +01:00
Unrud
41a91f7da1 Optional config source description 2020-01-15 03:19:44 +01:00
Unrud
a8a1fc470b Allow boolean raw_value for boolean config entries 2020-01-15 00:33:21 +01:00
Unrud
2e4924a0da Improve documentation 2020-01-13 15:51:10 +01:00
Unrud
88a0af8ba1 Improve documentation 2020-01-12 23:32:28 +01:00
Unrud
d3d11d0ec8 Report internal config sources 2020-01-12 23:32:27 +01:00
Unrud
967b6a463d Remove unnecessary optimizations 2020-01-12 23:32:27 +01:00
Unrud
caf5ff1080 Change default value for external users 2020-01-12 23:32:26 +01:00
Unrud
a7f4ffa7d4 Rename Configuration.inspect to log_config_sources
The old name was misleading.
2020-01-12 23:32:25 +01:00
Unrud
b7590f8c84 Rework configuration 2019-06-17 04:18:09 +02:00
Unrud
63e6d091b9 Update copyright 2019-06-17 04:13:24 +02:00
Unrud
515a5c9d18 cosmetics 2018-09-09 14:58:43 +02:00