summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-07-05 06:04:49 -0400
committerMalfurious <m@lfurio.us>2024-07-09 15:50:39 -0400
commit335b9f49532ce012b6da7dc404aff1dee55bfa21 (patch)
tree63fe61948d72721a60869c9850da799fa1c07f0c /docker-compose.yml
parent067a9c14c41022f5a93846a5b4c8dba4d5030ec1 (diff)
downloadmailnode-335b9f49532ce012b6da7dc404aff1dee55bfa21.tar.gz
mailnode-335b9f49532ce012b6da7dc404aff1dee55bfa21.zip
opendkim: Configure signing parameters
We use a hard-coded key selector of "default" and store keyfiles in the dkim volume. `Domain` indicates the mail sources for which mail should be signed rather than verified. Because we are using ENV_VIRTUAL_DOMAINS in this context, we now require the variable to be comma separated (no whitespace), as that is what this file requires. All previous usages of ENV_VIRTUAL_DOMAINS are compatible with comma separation. Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 0c741b6..69ac500 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -9,7 +9,7 @@ services:
# CONFIGURE ME!
# The FQDN this mail server identifies itself as
HOSTNAME: "YOUR-DOMAIN.example"
- # All domain names this server accepts mail for (space separated)
+ # All domain names this server accepts mail for (comma separated)
VIRTUAL_DOMAINS: "YOUR-DOMAIN.example"
restart: "always"