Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .helm_version_last_update
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,4 @@
2026-07-21 6.0.0 whoami
2026-07-21 1.0.196 yetibot
2026-07-21 2.10.1 zfs-localpv
2026-07-09 5.1.1 docker-mailserver
6 changes: 6 additions & 0 deletions argocd-helm-charts/docker-mailserver/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dependencies:
- name: docker-mailserver
repository: https://docker-mailserver.github.io/docker-mailserver-helm
version: 5.1.1
digest: sha256:db028913fbd0d1c70c5065d12f457f0e79d8a6f5177487a18bce7e0085ad3544
generated: "2026-07-09T00:03:07.809779868+05:30"
7 changes: 7 additions & 0 deletions argocd-helm-charts/docker-mailserver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: v2
name: docker-mailserver
version: 1.0.0
dependencies:
- name: docker-mailserver
version: 5.1.1
repository: https://docker-mailserver.github.io/docker-mailserver-helm
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
tests/
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dependencies: []
digest: sha256:643d5437104296e21d906ecb15b2c96ad278f20cfc4af53b12bb6069bd853726
generated: "2024-01-28T21:49:18.990692471-08:00"
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
annotations:
artifacthub.io/changes: |
- Breaking : Standardized app labels to app.kubernetes.io/name for Istio workload/Cilium compatibility
apiVersion: v2
appVersion: 15.1.0
description: A fullstack but simple mailserver (smtp, imap, antispam, antivirus, ssl...)
using Docker.
home: https://github.com/funkypenguin/helm-docker-mailserver
icon: https://avatars.githubusercontent.com/u/76868633?s=400&v=4
keywords:
- mailserver
- postfix
- dovecot
- amavis
- imap
maintainers:
- email: davidy@funkypenguin.co.nz
name: funkypenguin
name: docker-mailserver
sources:
- https://github.com/docker-mailserver/docker-mailserver-helm
version: 5.1.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
approvers:
- funkypenguin
reviewers:
- funkypenguin

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
service:
type: ClusterIP
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
service:
type: ClusterIP

configMaps:
postfix-accounts.cf:
create: true
path: postfix-accounts.cf
data: |
user@example.com|{SHA512-CRYPT}$6$PLsyDsD5kMTmQbe/$b1jT8MvuoBfs/JeBQ9fBQ0JlnWJZ377SW/OxSlNe7ldjgRQ7K4ysGfM6OpkkxQkAu7c7pR7EAR5Y4aIty2/Qi.

image:
# Makes kube-score happy, otherwise it complains about the default pullPlicy of "IfNotPresent"
pullPolicy: Always
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
GOOD NEWS!
====================

You've successfully installed the docker-mailserver helm chart!

Initial Setup
------------

If you have not yet configured your mail server you'll need to quickly open a command
prompt inside the running container (you have two minutes) and setup a first email account.

kubectl exec -it --namespace {{ .Release.Namespace }} deploy/{{ template "dockermailserver.fullname" . }} -- bash

setup email add user@example.com password

This will create a file:

cat /tmp/docker-mailserver/postfix-accounts.cf

Next, run the setup command to see additional options:

setup

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

{{ if .Values.proxyProtocol.enabled -}}

Proxy Ports
------------
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.

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.
{{ end }}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Expand the name of the chart.
*/}}
{{define "dockermailserver.name"}}{{default "dockermailserver" .Values.nameOverride | trunc 63 | trimSuffix "-" }}{{end}}

{{/*
Create a default fully qualified app name.

{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "dockermailserver.fullname" -}}
{{- if .Values.fullnameOverride -}}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- $name := default .Chart.Name .Values.nameOverride -}}
{{- if contains $name .Release.Name -}}
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{- end -}}
{{- end -}}

{{/*
Create the name of the controller service account to use
*/}}
{{- define "dockermailserver.serviceAccountName" -}}
{{- if .Values.serviceAccount.create -}}
{{ default (include "dockermailserver.fullname" .) .Values.serviceAccount.name }}
{{- else -}}
{{ default "docker-mailserver" .Values.serviceAccount.name }}
{{- end -}}
{{- end -}}

{{/*
Renders a value that contains template perhaps with scope if the scope is present.
Usage:
{{ include "common.tplvalues.render" ( dict "value" .Values.path.to.the.Value "context" $ ) }}
{{ include "common.tplvalues.render" ( dict "value" .Values.path.to.the.Value "context" $ "scope" $app ) }}
*/}}
{{- define "common.tplvalues.render" -}}
{{- $value := typeIs "string" .value | ternary .value (.value | toYaml) }}
{{- if contains "{{" (toJson .value) }}
{{- if .scope }}
{{- tpl (cat "{{- with $.RelativeScope -}}" $value "{{- end }}") (merge (dict "RelativeScope" .scope) .context) }}
{{- else }}
{{- tpl $value .context }}
{{- end }}
{{- else }}
{{- $value }}
{{- end }}
{{- end -}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{{- range $name, $config := .Values.configMaps }}
{{- if $config.create }}
apiVersion: v1
kind: ConfigMap
metadata:
labels:
app.kubernetes.io/name: {{ template "dockermailserver.fullname" $ }}
chart: "{{ $.Chart.Name }}-{{ $.Chart.Version }}"
heritage: "{{ $.Release.Service }}"
release: "{{ $.Release.Name }}"
name: {{ regexReplaceAll "[.]" $name "-" }}
data:
{{ $config.key | default $name }}: |
{{ tpl $config.data $ | indent 6 }}
---
{{- end }}
{{- end }}
Loading