mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
We've had a couple of reported issues about the difficulty of setting up new clients, or confusion due to using broken clients: - https://github.com/albertito/chasquid/pull/46 - https://github.com/albertito/chasquid/issues/52 This patch adds the first version of a "Clients" document that includes requirements for all clients, configuration examples, and a list of known-problematic client software. The goal is to help reduce friction and confusion when setting up clients. The document needs more polishing and examples, which hopefully will be added later. Fixes https://github.com/albertito/chasquid/issues/48.
39 lines
698 B
YAML
39 lines
698 B
YAML
# mkdocs configuration
|
|
#
|
|
# To test changes locally, run:
|
|
# mkdocs serve -f .mkdocs.yml
|
|
|
|
site_name: chasquid documentation
|
|
|
|
# Point the repo to github to make it easier for users to do edits, even if
|
|
# it's not the canonical location.
|
|
repo_url: https://github.com/albertito/chasquid
|
|
|
|
markdown_extensions:
|
|
- codehilite:
|
|
guess_lang: false
|
|
- attr_list
|
|
|
|
theme: readthedocs
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- How-to: howto.md
|
|
- Install: install.md
|
|
- Manpages: man/index.md
|
|
- All:
|
|
- aliases.md
|
|
- hooks.md
|
|
- clients.md
|
|
- dovecot.md
|
|
- dkim.md
|
|
- haproxy.md
|
|
- docker.md
|
|
- flow.md
|
|
- monitoring.md
|
|
- sec-levels.md
|
|
- tests.md
|
|
- relnotes.md
|
|
- knownissues.md
|
|
|