30 lines
1.1 KiB
Bash
30 lines
1.1 KiB
Bash
# Environment variables for the Stalwart service.
|
|
# Uncomment and edit an entry to override its default.
|
|
|
|
# Override the hostname used in HTTP responses
|
|
STALWART_HOSTNAME=mail.example.com
|
|
|
|
# Override the public base URL published in OAuth, OIDC, and JMAP discovery
|
|
# documents. Accepts scheme, host, optional port, and optional path prefix.
|
|
STALWART_PUBLIC_URL=https://mail.example.com
|
|
|
|
# Enable bootstrap / recovery mode on startup. Accepted: 1, true. Default: false.
|
|
STALWART_RECOVERY_MODE=false
|
|
|
|
# Log level while in recovery mode. Default: info.
|
|
STALWART_RECOVERY_MODE_LOG_LEVEL=info
|
|
|
|
# HTTP port used in recovery mode. Default: 8080.
|
|
STALWART_RECOVERY_MODE_PORT=8080
|
|
|
|
# Fixed administrator credentials — format: username:password
|
|
# Default: a temporary random password is generated and printed to the logs.
|
|
#STALWART_RECOVERY_ADMIN=admin:changeme
|
|
|
|
# Cluster role assigned to this node. Must match a role name defined in the
|
|
# cluster registry. Leave unset for a standalone (non-clustered) deployment.
|
|
STALWART_ROLE=standalone
|
|
|
|
# Push-notification shard this node is responsible for, when running in a
|
|
# cluster.
|
|
STALWART_PUSH_SHARD=0 |