Skip to content

Commit 2c43eb2

Browse files
authored
Merge pull request docker-mailserver#194 from pkerwien/improve-notes
Minor improvements to NOTES.txt and values.yaml
2 parents b2775ba + c1c2bb7 commit 2c43eb2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

charts/docker-mailserver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: "15.1.0"
33
description: A fullstack but simple mailserver (smtp, imap, antispam, antivirus, ssl...) using Docker.
44
name: docker-mailserver
5-
version: 5.1.0
5+
version: 5.1.1
66
sources:
77
- https://github.com/docker-mailserver/docker-mailserver-helm
88
maintainers:

charts/docker-mailserver/templates/NOTES.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Initial Setup
99
If you have not yet configured your mail server you'll need to quickly open a command
1010
prompt inside the running container (you have two minutes) and setup a first email account.
1111

12-
kubectl exec -it --namespace mail deploy/docker-mailserver -- bash
12+
kubectl exec -it --namespace {{ .Release.Namespace }} deploy/{{ template "dockermailserver.fullname" . }} -- bash
1313

1414
setup email add user@example.com password
1515

@@ -23,11 +23,11 @@ Next, run the setup command to see additional options:
2323

2424
For more information please refer to this Chart's README file.
2525

26-
{{ if .Values.proxyProtocol.enabled -}}
26+
{{ if .Values.proxyProtocol.enabled -}}
2727

2828
Proxy Ports
2929
------------
3030
You have enabled PROXY protocol support, likely because you are running on a bare metal Kubernetes cluster. This means additional ports have been created that are configured for the PROXY protocol. These ports are in the 10,000 range - thus IMAPs is 10993 (10000 + 993), SUBMISSION is 10587 (10000 + 587), etc.
3131

3232
It is now up to you to configure incoming traffic to use these ports. For more information please refer to this Chart's README file.
33-
{{ end }}
33+
{{ end }}

charts/docker-mailserver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ configMaps:
641641
## path: rspamd/dkim/rsa-2048-mail-example.com.public
642642
## data: abace # If create is true, then you must specify content. Must be base 64 encoded!
643643
##
644-
## If you set the create key to false, then you must manually create the ConfigMaps before deploying the chart.
644+
## If you set the create key to false, then you must manually create the Secrets before deploying the chart.
645645
##
646646
## kubectl create secret rspamd.example.com --namespace mail --from-file=rspamd.dkim.rsa-2048-mail-example.com.private.txt=<path_to_rspamd.dkim.rsa-2048-mail-example.com.private.txt>
647647
secrets: {}

0 commit comments

Comments
 (0)