Skip to content

Commit

Permalink
Merge pull request #94 from FelixLutze/master
Browse files Browse the repository at this point in the history
Fix off two issues.
  • Loading branch information
cfis authored Feb 4, 2024
2 parents 13fd998 + 3639c41 commit a2988e2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/docker-mailserver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "13.3.1"
description: A fullstack but simple mailserver (smtp, imap, antispam, antivirus, ssl...) using Docker.
name: docker-mailserver
version: 3.0.1
version: 3.0.2
sources:
- https://github.com/docker-mailserver/docker-mailserver-helm
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/docker-mailserver/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ spec:
{{- end }}
{{- end }}

{{- if and (.Values.deployment.env.ENABLE_POP) (not .Values.deployment.env.SMTP_ONLY) }}
{{- if and (.Values.deployment.env.ENABLE_POP3) (not .Values.deployment.env.SMTP_ONLY) }}
- name: pop3
containerPort: 110
- name: pop3s
Expand Down
2 changes: 1 addition & 1 deletion charts/docker-mailserver/templates/ingress-rspamd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:

{{ if .Values.rspamd.ingress.tls.enabled }}
tls:
- secretName: {{ .Values.ingress.tls.secret }}
- secretName: {{ .Values.rspamd.ingress.tls.secret }}
hosts:
- {{ .Values.rspamd.ingress.host }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/docker-mailserver/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ spec:
{{- end }}
{{- end }}

{{- if and (.Values.deployment.env.ENABLE_POP) (not .Values.deployment.env.SMTP_ONLY) }}
{{- if and (.Values.deployment.env.ENABLE_POP3) (not .Values.deployment.env.SMTP_ONLY) }}
- name: pop3
targetPort: pop3
port: 110
Expand Down
2 changes: 1 addition & 1 deletion charts/docker-mailserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ configMaps:
}
{{- end -}}
{{- if and (.Values.deployment.env.ENABLE_POP) (not .Values.deployment.env.SMTP_ONLY) }}
{{- if and (.Values.deployment.env.ENABLE_POP3) (not .Values.deployment.env.SMTP_ONLY) }}
service pop3-login {
inet_listener pop3 {
port = 110
Expand Down

0 comments on commit a2988e2

Please sign in to comment.