Files
chasquid/.mkdocs.yml
Alberto Bertogli 2ee64deec0 aliases: Support '*' as the destination user
This patch implements support for aliases that contain '*' as the
destination user.

In that case, we replace it with the original user.

For example, `*: *@pond` will redirect `lilly@domain` to `lilly@pond`.

This is experimental for now, and marked as such in the documentation.
The semantics can be subtle, so we may need to adjust them later.
2025-04-06 14:04:53 +01:00

49 lines
809 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
- admonition
theme: readthedocs
exclude_docs: |
man/*.1
man/*.5
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
- contributing.md
not_in_nav: |
security.md
man/*