Radicale icon indicating copy to clipboard operation
Radicale copied to clipboard

TOML compatible config file

Open John-Appleseed opened this issue 2 years ago • 0 comments

Radicale's config file is very close to the TOML config format. For TOML parsers to work with Radicale configs:

  • [ ] Allow strings with quotes. ex hosts = "127.0.0.1:5232"

TOML Config Test

# Install dasel
go install github.com/tomwright/dasel/cmd/dasel@master
# Write config options with dasel to radicale/config
dasel put -p toml string -f "radicale/config" "server.hosts" "127.0.0.1:5232"

John-Appleseed avatar Sep 11 '22 02:09 John-Appleseed