diff --git a/website/docs/installation/configuration.md b/website/docs/installation/configuration.md index 82d994e68..894995cf7 100644 --- a/website/docs/installation/configuration.md +++ b/website/docs/installation/configuration.md @@ -100,11 +100,11 @@ Disable the inbuilt update-checker. Defaults to `false`. - `AUTHENTIK_EMAIL__USERNAME` - Default: `""` + Default: `` (Don't add quotation marks) - `AUTHENTIK_EMAIL__PASSWORD` - Default: `""` + Default: `` (Don't add quotation marks) - `AUTHENTIK_EMAIL__USE_TLS` diff --git a/website/docs/installation/docker-compose.md b/website/docs/installation/docker-compose.md index c7b49df72..c71681b71 100644 --- a/website/docs/installation/docker-compose.md +++ b/website/docs/installation/docker-compose.md @@ -39,9 +39,9 @@ Append this block to your `.env` file # SMTP Host Emails are sent to AUTHENTIK_EMAIL__HOST=localhost AUTHENTIK_EMAIL__PORT=25 -# Optionally authenticate -AUTHENTIK_EMAIL__USERNAME="" -AUTHENTIK_EMAIL__PASSWORD="" +# Optionally authenticate (don't add quotation marks to you password) +AUTHENTIK_EMAIL__USERNAME= +AUTHENTIK_EMAIL__PASSWORD= # Use StartTLS AUTHENTIK_EMAIL__USE_TLS=false # Use SSL diff --git a/website/docs/troubleshooting/emails.md b/website/docs/troubleshooting/emails.md index 31fcb6008..642ea2b6d 100644 --- a/website/docs/troubleshooting/emails.md +++ b/website/docs/troubleshooting/emails.md @@ -5,7 +5,7 @@ title: Troubleshooting Email sending To test if an email stage, or the global email settings are configured correctly, you can run the following command: ```` -./manage.py test_email [-s ] +ak test_email [-s ] ``` If you omit the `-s` parameter, the email will be sent using the global settings. Otherwise, the settings of the specified stage will be used. @@ -13,11 +13,11 @@ If you omit the `-s` parameter, the email will be sent using the global settings To run this command with docker-compose, use ``` -docker-compose exec worker ./manage.py test_email [...] +docker-compose exec worker ak test_email [...] ``` To run this command with Kubernetes, use ``` -kubectl exec -it deployment/authentik-worker -c authentik -- ./manage.py test_email [...] +kubectl exec -it deployment/authentik-worker -c authentik -- ak test_email [...] ```